@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #9a0000;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
}
.twoColFixLtHdr #container {
	width: 715px;
	background: #9A0000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
} 
.twoColFixLtHdr #header {
	background: #9A0000;  /* 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. */
	height: 20px;
} 
.twoColFixLtHdr #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 265px; /* 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: #9A0000;
	height: 720px;
}
.twoColFixLtHdr #subSidebar {
	background:#9A0000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #3398CC;
	text-align: center;
} 
.twoColFixLtHdr #mainContent {
	height: 600px;
} 
.twoColFixLtHdr #subContent {
	height: 120px;
	text-align: center;
	margin-top: 20px;
}
.twoColFixLtHdr #footer {
	background:#9A0000;
	text-align: center;
} 
.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;
}