/* MAIN STRUCTURE */ 
html, body{ 
  margin:0; 
  padding:0; 
  text-align:center;
  background:url("bg.png") repeat-x #e2e2e2;
  font-family: Arial, sans-Serif;
  font-size: 14px;
} 
 
#pagewidth{ 
 width:960px; 
 text-align:left;  
margin-left:auto; 
 margin-right:auto;  
} 
 
#header{
  position:relative; 
  height:260px; 
  width:100%;
  margin:0px;
  padding:0px;
  background:url("headerbg.jpg") no-repeat;
} 
 
#content{
 width:960px; 
 float:left; 
 position:relative; 
background:url("contentbg.png") repeat-y;
  }
 
#footer{
  background:url("footerbg.jpg") repeat-x #c64a14;
  height:200px; 
  clear:both;
 } 
 

 
 /* *** Float containers fix:
 http://www.csscreator.com/attributes/containedfloat.php *** */ 
.clearfix:after {
 content: "."; 
 display: block; 
height: 0; 
 clear: both; 
 visibility: hidden;
 }
 
.clearfix{display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */  


 
 /*printer styles*/ 
 @media print{ 
/*hide the left column when printing*/ 
#leftcol{display:none;} 
#twocols, #maincol{width:100%; float:none;}
}

