/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    2007.01.15
   PURPOSE: Controls the layout of the site elements
 **************************************************************/


/**************************************************************
   .width: defines the width and alignment for site containers
 **************************************************************/

.width {
  width: 92%;
  min-width: 900px;
  max-width: 1200px;
  margin: 0 auto;  
  text-align: left;
}



/**************************************************************
   #header: site header to hold menu and logo
 **************************************************************/

#header {
  margin-top: 40px;
  position: relative; 
}


/* site header/subheader */
#header h1 {
  position: absolute;
  top: 0;
  right: 23px;
  
  margin: 0;
  padding: 0;
  
  font: 2.1em verdana, arial, sans-serif;;
  letter-spacing: -1px;  
  
  color: #903;  
}

#header h2 {
  position: absolute;
  top: -0.9em;
  right: 23px;
  
  margin: 0;
  padding: 0;  
  
  font: bold 1em verdana, arial, sans-serif;
  
  color: #AAA;
}


/* site menu */
#header ul {
  margin: 0 0 0 20px;
  padding: 0;
  list-style: none;
}

#header ul li {
  margin: 0;
  padding: 0;
  display: inline;
}

#header ul li a {
  float: left;
  margin-right: 2px;
  padding: 10px 20px;
  
  font: 1.3em verdana, arial, sans-serif;;
  letter-spacing: -1px;
  text-decoration: none;
  
  color: #903;
  cursor: pointer;
}

#header ul li a:hover,
#header ul li.active a {
  color: #252525;
  background: url(../img/bg/menu.png) repeat-x bottom left;
}




/**************************************************************
   #content: the main white site shape
 **************************************************************/

#content {  
  clear: both;
  background: #FFF;
  border: 1px solid #B3B2B3;
}


/**************************************************************
   #page: holds the site columns
 **************************************************************/

#page {
  padding: 20px 302px 0 20px;  
}

#page .column {
  float: left;
  margin-bottom: 10px;
}

#fluid {
  width: 100%;  
}

#fixed {
  width: 260px;
  margin-left: 20px;
  margin-right: -312px;
}

#description {
  margin: -10px 5px 10px 0;
  padding: 0 0 20px 0;
  
  text-align: justify;
}

#thumbFeed {
  height: 70px;
  padding-top: 10px;
  text-align: center;
}

#thumbFeed a {
  margin-right: 4px;
}

#holder {
  width: 259px;
  text-align: right;
  background: #000;
}

#holderDescription {
  margin-bottom: 20px;

  font-size: 0.8em;
  line-height: 1.3em;
  text-align: justify;
  
  color: #777;
}



/**************************************************************
   #footer: holds the site columns
 **************************************************************/

#footer {
  padding: 5px 0 40px 0;
  font-size: 0.85em;
  color: #8F8F8F;
}

#footer a {
  text-decoration: none;
  color: #C4C2C2;  
}

#footer a:hover {
  color: #FFF;
}

#footer p {
  margin: 0 0 0 20px;
  padding: 0;
}


#footer ul {
  margin: 0 20px 0 0;
  padding: 0;
  list-style: none;
}

#footer ul li {
  margin: 0;
  padding: 0;
  display: inline;
  background: none;
} 

#footer ul li a {
  padding: 0 5px;
  border-right: 1px solid #666;  
}

#footer ul li.last a {
  border-right: 0;
  padding-right: 0;
}



/**************************************************************
   .bigLinks: Large list items as full links (w/ thumbnails)
 **************************************************************/

ul.bigLinks {
  margin: 0px 0;
  padding: 0;
  list-style: none;
  }

ul.bigLinks li {
  margin: 0;
  padding: 0;
  display: inline;
  
}

ul.bigLinks li a {
  position: relative;
  display: block;
  min-height: 110px;

  margin: 0 5px 10px 0;
  padding: 20px 0;  
  
  text-decoration: none;
  
  color: #3C3C3C;
  cursor: pointer;
}

ul.bigLinks li a img {
  position: absolute;
  top: 20px;
  left: 0;
}

ul.bigLinks li a span.title {
  display: block;
  padding: 0 20px 0 180px;

  font-size: 1.1em;
  font-weight: bold;
  text-decoration: underline;
  color: #903;
}


ul.bigLinks li a span.description {    
  display: block;
  text-align: justify;
  padding: 0 20px 0 180px;
  background: ;
}


ul.bigLinks li a:hover {
  background: #F2F2F2 url(../img/bg/bigLinks.gif) repeat-x bottom left;
}

ul.bigLinks li a:hover span.title {
  color: #252525;
}



/* Modifications for the #fixed column */
#fixed ul.bigLinks {
  margin-top: 0;
}


#fixed ul.bigLinks li a {
  margin: 20px 0;
}

#fixed ul.bigLinks li a img {
  top: 0;
  left: -2px;
  border: 2px solid #FFF;
}

#fixed ul.bigLinks li a:hover img {
  border: 2px solid #FC0;
}


/**************************************************************
   Error/message classes for the contact form
 **************************************************************/

#success, 
#error {
  display: none;
  padding: 15px 10px 15px 50px;
  margin: 10px 0 ;
  
  background-color: #FFC;
  background-repeat: no-repeat;
  background-position: 11px 11px;  
  border-right: 1px solid #FC0;
  border-bottom: 1px solid #FC0;
}

#success {
  background-image: url(../img/bg/success-icon.gif);
}

#error {
  background-image: url(../img/bg/error-icon.gif);
}



/**************************************************************
   Alignment classes
 **************************************************************/

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}

.alignCenter {
  text-align: center;
}






/**************************************************************
   Generic display classes
 **************************************************************/

.feedIcon img,
.feedIcon :hover img {
  vertical-align: middle;
  border: 0;
}

.clear {
  clear: both;
}

.block {
  display: block;
}

.width40 {
  width: 40%;
}

.small {
  font-size: 0.85em;
  color: #903;
  font : bold;
  line-height: 120%;
}

.gray {
  color: #999;
}

#RSS {
  display: block;
  margin: 0 0 10px 0;
  padding: 20px 20px 20px 40px;

  font: 1.4em verdana, arial, sans-serif;
  text-decoration: none;

  background: url(../img/bg/feed-icon.png) no-repeat center left; }

/*\*/
* html #RSS {
  height: 1%;
}
/**/

#RSS span {
  border-bottom: 2px solid #903;
}

a:hover#RSS span {
  border-color: #000;
}

