/* MAIN STRUCTURE */ 
html, body{ 
	margin:0; 
	padding:0; 
 	text-align:center;
	background:url("bg.png") repeat-x #fff;
	font-family:Trebuchet MS, Sans-Serif;
	font-size:1em;
} 
 
#pagewidth{ 
 width:960px; 
 text-align:left;  
margin-left:auto; 
 margin-right:auto;  
} 
 
#header{
	position:relative; 
	height:180px; 
	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{
	border-top:1px solid #021e20;
	background-color:#075d64;
	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;}
}

