@charset "utf-8";
.thrColFixHdr #container {
	width: 990px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 310px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1px 0px 1px 0px; /* padding keeps the content of the div away from the edges */
}.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 300px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1px 0px 1px 0px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #mainContent {
	float: center; /* since this element is floated, a width must be given */
	width: 330px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1px 0px 1px 0px; /* padding keeps the content of the div away from the edges */
    	margin-top: 0px;
position: absolute;
	top: 250px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 0px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 0px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
