* { margin: 0; padding: 0 }

html, body{ 
 margin:0; 
 padding:0; 
 text-align:center; 
} 
 
#pagewidth{ 
 width:1410px; 
 text-align:left;  
margin-left:auto; 
 margin-right:auto;  
} 
 
#header { position: relative; width: 100%; height: 230px } 
 
#leftcol  { position: relative; width: 310px; float: left }
 
#twocols{
 width:1100px; 
 float:right; 
 position:relative; 
  }
 
#rightcol    { position: relative; width: 420px; height: 1200px; float: right }
 
#maincol    { background-color: #fef5dd; display: inline; position: relative; width: 680px; height: 1200px; float: left }
#footer{
 height:25px; 
  background-color:#AC7C7C; 
 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;} 

/*hide the right column when printing*/ 
#rightcol{display:none;} 
#twocols, #maincol{width:100%; float:none;}
}


