@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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: #000000;
	background-color: #280B4A;
}
.twoColFixLtHdr #container {
	width: 780px;
	text-align: left;
	border: 1px none #000000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #FFC;
} 
.twoColFixLtHdr #header {
	/*border-bottom-width: 20px;
	border-bottom-style: solid;
	border-bottom-color: #B86A00;*/
	height: 150px;
	margin: 0px;
	padding: 0px;
	padding-bottom: 25px;

} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.twoColFixLtHdr #sidebar1 {
	width: 175px;
	float: left;
	background-color: #B86A00;
	margin-top: 0px;
	padding: 10px;
}
.twoColFixLtHdr #mainContent {
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 185px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	margin-top: 0px;
	font-family: "Lucida Console", Monaco, monospace;
} 
.twoColFixLtHdr #footer {
	/*background:#DDDDDD;*/
	padding: 0;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #FFC;
	background-color: #422B1B;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	width: 780px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	text-align: center;
	float: none;
	clear: none;
	overflow: auto;
}
.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;
	margin-top: 2px;
	margin-bottom: 1px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-top: 2px;
	margin-bottom: 1px;
}
.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;
}
