@charset "utf-8";
body  {
	font: 1em Arial, Helvetica, sans-serif;
	margin: 10px; /* 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: #FFFFFF;
}
.twoColFixLtHdr #container {
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	border-bottom: black solid 7px;
	min-height: 90px;
} 
.twoColFixLtHdr #header img {
	margin: 0px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 0px;
	border: none;
}

.twoColFixLtHdr #header h1 {
	margin: 0px 0px 10px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
	font-weight: 600;
	font-family: "Arial Black", Helvetica-Black;
}
.twoColFixLtHdr #header p {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	text-align: center;
	margin: 10px 0 0 0;
}

.twoColFixLtHdr #sidebar1 {
	width: 140px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 10px 20px 5px;
	margin-top: 0px;
	position: absolute;
}
.twoColFixLtHdr #sidebar1 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	font-weight: bold;
	margin-bottom: 20px;
	color: #E8E8E8;
}

.twoColFixLtHdr #mainContent {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 7px 0 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 0.8em;
	border-left: solid 155px #800000;
} 

.twoColFixLtHdr  #mainContent  a:hover, .twoColFixLtHdr  #footer  a:hover {
	text-decoration: none;
}

.twoColFixLtHdr #mainContent h1 {
	font-size: 1.4em;
	font-weight: bold;
	margin-top: 0px;
}
.twoColFixLtHdr #mainContent h2 {
	font-weight: bold;
	font-size: 1em;
	margin-bottom: 5px;
}
.twoColFixLtHdr   #mainContent   ul {
	margin: 0px;
	padding: 0px;
}
.twoColFixLtHdr #mainContent li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 1.5em;
}
.twoColFixLtHdr #footer p {
	font-weight: bold;
	padding: 7px 0 0 0;
	font-size: 0.8em;
}

.twoColFixLtHdr #footer {
	margin: 20px 0 0 165px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	border-top: solid 2px black;
}

.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;
}
.twoColFixLtHdr #sidebar1 a {
	color: #E8E8E8;
	text-decoration: none;
	padding-left: 5px;
	border-left: 4px solid #800000;
	display: block;
}
.twoColFixLtHdr #sidebar1 a:hover {
	color: #FFFFFF;
	text-decoration: none;
	border-left-color: #FFFFFF;
}
.twoColFixLtHdr  #mainContent  li  ul {
	list-style-type: square;
	margin-top: 3px;
}
.twoColFixLtHdr  #mainContent  a, .twoColFixLtHdr  #footer  a {
	color: #660000;
}
.twoColFixLtHdr #footersidebar {
	background-color:#800000;
	width:155px;
	padding: 20px 0;
	float:left;
}
