/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    2006.08.30
   PURPOSE: Controls the layout of the site and styles
            the menus
 **************************************************************/



/**************************************************************
   #content: Sets the width of the site
 **************************************************************/

#content {  
  width: 589px;
  height: 100%;
  min-height: 100%;  
  margin: 0 auto;

  text-align: left;
  background: url(../img/bg/content.gif) repeat-y top center;
}


#content[id],
#width[id] {
  height: auto;  
  background: url(../img/bg/content.png) repeat-y top center;
}




/**************************************************************
   #header: Holds the site title and header images
 **************************************************************/

#header {
  position: relative;
  height: 170px;
  background: url(../img/bg/header.jpg) no-repeat top center;
}

#header h1,
#header h2 {
  margin: 0;
  padding: 0;  
  text-indent: -100em;
  background: none;
}

#header img {
  position: absolute;
  z-index: 1;

  top: 60px;
  left: 50px;
}





/**************************************************************
   #menu: The top level site menu
 **************************************************************/



ul#menu {
  margin: 0;
  padding: 0 49px;
  width: 100%;
}

ul#menu li {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul#menu li a {
  float: left;
  padding: 15px 19px 5px 19px;


  font: 400 1.54em georgia, serif;
  text-decoration: none;
  color: #61804E;
  border-bottom: 1px solid #D3F1B6;
}

ul#menu li a:hover {
  color: #2E5F0F;
  background: url(../img/bg/menu.gif) repeat-x bottom left;
}

ul#menu li a.here {
  color: #512103;
  background: url(../img/bg/menu.gif) repeat-x bottom left;
}



/**************************************************************
   #page: Holds the main page content.
 **************************************************************/

#page {  
  clear: both;  
  padding: 2em 49px;
}


.content {
  width: 100%;
}


#success {  
  display: none;
  margin: 1em 0;
  background-color: #FBFEDF;
  border-bottom: 1px solid #FFEC84;
}

#success p {
  padding: 1em;  
  font-size: 1.2em;
  background-color: #FBFEDF;
}


/**************************************************************
   .footer: Site footer
 **************************************************************/

.footer {
  padding-top: 3em;
  font-size: 0.85em;
}

/**************************************************************
   Width classes used by the site columns
 **************************************************************/

.width100 {
  width: 100%;
}

.width75 {
  width: 74%;
}

.width50 {
  width: 49.7%;
}

.width33 {
  width: 32.7%;
}

.width25 {
  width: 24.7%;
}



/**************************************************************
   Alignment classes
 **************************************************************/

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}



/**************************************************************
   Generic display classes
 **************************************************************/

.clear {
  clear: both;
}

.block {
  display: block;
}

.big {
  font-size: 1.3em;  
}

.small {
  font-size: 0.85em;  
}

.bold {
  font-weight: bold;
}

.green {
  color: #A1FF45;
}

.highlight {
  padding: 1px 2px;
  background: #D9F5EC;
  border-top: 1px solid #BDEDDE;
}

.greenBg {
  padding: 0 10px;
  background-color: #F1FFE3;
  border-bottom: 1px solid #B8E78B;
}



