@charset "UTF-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #999999;
	margin: 0;
	padding: 10;
	text-align: center;
	color: #000099;
}
.thrColAbsHdr #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 900px;  
	background: #FFFFCC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #FF0033;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColAbsHdr #header { 
	height: 80px; 
	background: #FF99CC; 
	padding: 5 10px 5 20px;  /* 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. */
} 
.thrColAbsHdr #header h1 {
	margin: 0; 
	padding: 10px 5; /* using padding instead of margin will allow you to keep the element away from the div edges*/
}
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 60px;
	left: 0;
	width: 150px;
	background: #FFCC66; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 60px;
	right: 0;
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFCC66; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColAbsHdr #mainContent { 
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thrColAbsHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FF99CC;
} 
.thrColAbsHdr #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 5; /* padding on this element will create space*/
	text-align: center;
}
.fltrt { /* this class can be used to float an element right*/
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left*/
	float: left;
	margin-right: 8px;
}

