@charset "UTF-8";
body  {
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #336;
	text-align: center;
	width: 100%;
}
.twoColFixLtHdr #container {
	width: 80%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 10%;
	position: absolute;
	left: 0px;
	top: 0px;
	border: 1px solid #C90;
} 
.twoColFixLtHdr #header {
	background-color: #900;
	background-image: url(logo.gif);
	height: 150px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #C90;
	background-repeat: no-repeat;
} 
.twoColFixLtHdr #container #img {
	height: 150px;
	width: 250px;
	border-right-width: 4px;
	border-right-style: solid;
	border-right-color: #C90;
	position: absolute;
	left: 0px;
	top: 0px;
}
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	width: 200px;
	position: absolute;
	left: 0px;
	top: 160px;
	padding-left: 0px;
	background-repeat: no-repeat;
	height: 400px;
	padding-top: 0px;
}
.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	padding-bottom: 0;
	padding-left: 20px;
	margin-left: 270px;
	padding-top: 30px;
	padding-right: 30px;
} 
.twoColFixLtHdr #container #mainContent h1 {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #C90;
	color: #336;
}
.twoColFixLtHdr #container #mainContent h3 {
	color: #900;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #C90;
}
.twoColFixLtHdr #container #mainContent p {
	margin-left: 80px;
	margin-right: 100px;
}
.twoColFixLtHdr #footer {
	background-color: #C90;
	height: 50px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixLtHdr #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 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 80%;
}
.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;
}
a:link {
	color: #900;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #900;
}
a:hover {
	text-decoration: underline;
	color: #666;
}
a:active {
	text-decoration: underline;
	color: #900;
}
.article_list {
	margin-left: 80px;
	padding-right: 100px;
}
