/* 
   Cascading Style Sheets Document - CSS
   silpool - July 2009
   Global Styles
*/


/* Import Styles */
@import url(home.css);         /* Homepage Specials */

@import url(menu.css);         /* Menu Styles */
@import url(content.css);      /* Page Content */
@import url(colorschemes.css); /* Color Schemes at content pages */
@import url(forms.css);        /* Contact Form */
@import url(lightbox.css);     /* Lightbox */

/* Global */
* {
  font-family:Arial, Helvetica, sans-serif;
  font-size:14px;
  margin:0;
  padding:0;
  border:none;
}

div#pageWrapper {
  width:980px;
  min-height:680px;
  padding-bottom:20px;
}
* html div#pageWrapper { /* IE Hack */
  height:660px;
}

/* 
h1 = Main headline at top of content pages, color is fixed
h2 = Main headline at top of content pages, color changes in Content Area highlight color
h3 = Slogen color at bottom of pages, color changes in Content Area highlight color
h3 = Second headline for content pages, color is fixed
*/
h1,h2 {
  font-size:22px;
  margin:0;
  padding:0 0 17px 0;
  font-weight:normal;
}
h3 {
  font-size:22px;
}
h4 {
  font-size:14px;
  margin:0;
  padding:0;
}
p {
  padding-bottom:24px;
}


/* Footer */
ul#footer {
  clear:both;
  width:956px;
  overflow:hidden;
  border-top:1px solid #A49E9B;
  margin:0 0 0 13px;
  padding:3px 0 0 0;
}
ul#footer li {
  float:right;
  color:#A49E9B;
  font-size:12px;
  list-style-type:none;
}
ul#footer li a,
ul#footer li a:link,
ul#footer li a:visited {
  color:#A49E9B;
  text-decoration:none;
  font-size:12px;
}
ul#footer li a:hover,
ul#footer li a:active,
ul#footer li a.act,
ul#footer li a.act:link,
ul#footer li a.act:visited {
  color:#492615;
}




