@charset "UTF-8";
/* CSS Document */
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #99FFF;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
}
.thrColLiqHdr #container {
	width: 80%;  /* 80% of the browser width */
	background: #CCFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #3399CC;
	text-align: center; /* this overrides the text-align: center on the body element. */
}
.thrColLiqHdr #container #mainContent p {
	text-align: left;
}
.thrColLiqHdr #header { 
	background: #00FFFF; 
	padding: 5 10px;
	border: 2px solid #000000;
} 
.thrColLiqHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
}
.thrColLiqHdr #sidebar1 {
	float: left; /* this element must precede any element positioned next to it*/
	width: 22%;
	background: #CCFFCC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
	text-align: left;
}
.thrColLiqHdr #sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 23%; /* since this element is floated, a width must be given */
	background: #CCFFCC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	text-align: left;
}
.thrColLiqHdr #sidebar1 p, .thrColLiqHdr #sidebar1 h3, .thrColLiqHdr #sidebar2 p, .thrColLiqHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.thrColLiqHdr #mainContent { 
	margin: 0 24% 0 23.5%; 
}

.thrColLiqHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#99CCFF;
} 
.thrColLiqHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
