/*
	THIS FILE ONLY CONTAINS THE MAIN LAYOUT CSS, DO NOT MODIFY
*/

html, body{ 
 margin:0; 
 padding:0; 
 text-align:center; 
} 
 
#main-wrapper { 
 width:924px; 
 text-align:left;  
 margin-left:auto; 
 margin-right:auto;  
} 
 
#header {
	text-align:left;
	position:relative;
	width:100%;
	height:154px;
} 
 
#leftcol {
 width:220px; 
 float:left; 
 position:relative;
 text-align:left;  
}
 
#twocols {
 width:704px; 
 float:right; 
 position:relative; 
}
 
#rightcol {
 width:220px; 
 float:right; 
 position:relative; 
}
 
#maincol {
 	float: left; 
 	display:inline; 
 	position: relative; 
 	width:444px; 
	padding-left:20px;
	padding-right:20px;
}
 
#footer {
 	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;}
}
