/* layout.css */ 
html, body{ 
 margin:0; 
 padding:0; 
 text-align:center; 
} 
 
#pagewidth{
	width:950px;
	text-align:left;
	margin-left:auto;
	margin-right:auto;
	/*border: 1px solid #A40E27;*/
 background: #003263 url(../images/background.gif) repeat-y left top;
} 
 
#header{
 position:relative; 
 height:97px; 
 /*background-color: #00FF00;*/ 
 width:100%;
} 
 
#leftcol{
 width:142px; 
 float:left; 
 position:relative; 
 background-color:#007DB4; 
}
 
#twocols{
 width:808px; 
 float:right; 
 position:relative; 
}
 
#rightcol{
 width:173px; 
 float:right; 
 position:relative; 
}
 
#maincol{
 float: left; 
 display:inline; 
 position: relative; 
 width:635px; 
 margin: 0;
 border: 0;
 padding: 0;
 text-align: left;
}
#maincol-content {
	padding: 10px;
	padding-top: 0px;
}
 
#footer{
 background-color: #003263;
 margin: 0;
 text-align: center;
 width: 950px;
 padding-bottom: 5px;
 /*height:57px; */
 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-table;}

/* 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;}

	#header, #footer { display:none; }
	
}

