@charset "utf-8";
body  {
	margin: 0;
	padding: 0;
	text-align: center;
}
.twoColFixLtHdr #container {
	width: 1000px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
} 
.twoColFixLtHdr #header {
	margin-bottom: 24px;
	padding-top: 0 10px 0 20px;
	position: relative;
	top: 0;
	left: 0;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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 */
	position: relative;
	top: 0px;
	left: 0px;
	background: transparent; 
	vertical-align: sub;
	padding-left: 15px;
	margin-top: 0px;
	padding-top: 0px;
}
.twoColFixLtHdr #mainContent {
	padding: 0;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 220px;
	margin-right: 25px;
} 
.twoColFixLtHdr #footer {
	background:#DDDDDD;
	margin-top: 40px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 0;
}
.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 */
	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 a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
