@charset "utf-8";
/* CSS Document */
<style type="text/css"> 
 
body  {
	font: 100% Consolas, Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; 
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #OOOOOO;
}
.thrColLiqHdr #container {
	width: 750px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 20px 20px 20px 20px;
	padding: 0 0 0 0;
	border: 2px solid #CCCCCC;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColLiqHdr #header {
	background: #FFFFFF;
	padding:20px 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

.thrColLiqHdr #header1Left {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 750px; /* since this element is floated, a width must be given */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
} 

.thrColLiqHdr #header1Right {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 1px; /* since this element is floated, a width must be given */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0px 0px 0px;
/
} 

.thrColLiqHdr #sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 710px; /* since this element is floated, a width must be given */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 20px 0px 20px; /* top and bottom padding create visual space within this div  */
}
.thrColLiqHdr #sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 0px; /* since this element is floated, a width must be given */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0 0px; /* top and bottom padding create visual space within this div */
}

.thrColLiqHdr #mainContent { 
	margin: 0 0 0 0; 
	padding: 0 0 0 0;
	}

.thrColLiqHdr #footer {
	padding: 0 10px 20px 20px;
	background:#FFFFFF;
} 
.thrColLiqHdr #footer p {
	margin: 0;
	padding: 20px;
}

/* Miscellaneous classes for reuse */
.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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
 
</style>
