/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    2006.09.12 
   PURPOSE: Controls the layout of the site and styles
            the menus
 **************************************************************/



/**************************************************************
   #wrapper & #content: wrapper positions and sets the width
   on the content.  The background is then applied to #content.
 **************************************************************/

#wrapper {
  width: 589px;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  text-align: left;
}


#content { 
  float: left;
  width: 589px;
  height: 100%;
  min-height: 100%; 
  background: url(../img/bg/content.gif) repeat-y top center;
}


#content[id] {
  height: auto;  
  background: url(../img/bg/content.png) repeat-y top center;
}




/**************************************************************
   #header: Holds the site title and header images
 **************************************************************/

#header {
  padding: 0;
  margin: 0;
  background: url(../img/bg/header.gif) no-repeat top center;  
  height: 345px;
}

#skip {
  position:absolute;
  top: 10px;
  left: 0;
  text-transform: uppercase;
  display:block;
  text-align: center;
  font: 9px arial, helvetica, sans-serif;
  letter-spacing: 1.3em;
  padding: 3px 0;
  width: 573px;
  margin: 0 8px;
}

a#skip,
a#skip:hover,
a#skip:active,
a#skip:visited {
  border: none;
  color: #a2a2a2;
}

a#skip:hover {
  background: url(../img/bg/top.gif) repeat top left;
}



#header h1 {
  padding: 0;
  margin: 0;
  position: absolute;
  background: none;
  top: 80px;
  left: 150px;
  font-size: 3em;
  font-family: georgia;
  color: #333;
  line-height: 1em;
}

#header h1 #subheader {
  position: relative;
  top: -0.5em;
  font-size: 0.4em;
  font-weight: bold;
  color: #666;
}


/**************************************************************
   #menu: The top level site menu
 **************************************************************/

ul#menu {
  position: absolute;
  left: 125px;
  top: 170px;
  width: 340px;
  margin: 0;
  padding: 0 !important;
  /*padding: 0 0 0 10px;  */
}

ul#menu li {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul#menu li a {
  float: left;  
  padding: 5px 0;
  margin: 10px;
  width: 150px;

  font: 400 1.2em georgia, serif;
  text-align: center;
  text-decoration: none;
  background: url(../img/bg/menu.gif) repeat-y bottom left;
  color: #666;
  border-bottom: 1px solid #ebebeb;
}


ul#menu li a:hover,
ul#menu li a.here:hover {
  color: #3fae00;
  background: url(../img/bg/menu-hover.gif) repeat-y bottom left;
  border-bottom: 1px solid #c9ff88;
}

ul#menu li a.here {
  color: #d34f00;
  background: url(../img/bg/menu-this.gif) repeat-y center left;
  border-bottom: 1px solid #ffd19a;
}


/**************************************************************
   #page: Holds the main page content.
 **************************************************************/

#page {  
  float: left;
  clear: both;   
  width: 491px !important;
  width: 100%;
  
  padding: 0 49px 0.7em;  
}




/**************************************************************
   .footer: Site footer
 **************************************************************/

.footer {
  padding-top: 3em;
  font-size: 0.85em;
}





/**************************************************************
   Width classes used by the site columns
 **************************************************************/

.width100 {
  width: 100%;
}

.width75 {
  width: 73%;
}

.width66 {
  width: 64%;
}

.width50 {
  width: 48%;
}

.width33 {
  width: 31%;
}

.width25 {
  width: 23%;
}

.width10 {
  width: 10%;
}


/**************************************************************
   Alignment classes
 **************************************************************/

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}

.alignCenter {
  text-align: center;
}


/**************************************************************
   Generic display classes
 **************************************************************/

.clear {
  clear: both;
}

.block {
  display: block;
}

.big {
  font-size: 1.3em;  
}

.small {
  font-size: 0.85em;  
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.grey {
  color: #AAA;
}

.green {
  color: #3fae00;
}

.orange {
  color: #d34f00;
}

.darkBrown {
  color: #512103;
}


.greenBg {
  padding: 10px;
  background-color: #e7ffd1;
  border-bottom: 1px solid #c9ff88;
}

.orangeBg {
  padding: 10px;
  background: #fff0e0;
  border-bottom: 1px solid #ffd19a;
}





