@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: #000;
}
.twoColFixLtHdr #container {
	width: 930px;  /* 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 {
	padding: 0;
	height: 159px;
} 
.twoColFixLtHdr #mainContent {
	margin: 10px 0 0 250px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 0.8em;
	min-height: 620px;
	float: right;
	width: 640px;
} 
.twoColFixLtHdr #mainContent h1 {
	color: #0D5886;
	font-family: Tahoma, Geneva, sans-serif;
	text-shadow: #ccc 1px 1px 1px;
	margin-top: 10px;
}
.twoColFixLtHdr #mainContent h2 {
	color: #0D5886;
	font-family: Tahoma, Geneva, sans-serif;
	text-shadow: #ccc 1px 1px 1px;
	margin-top: 10px;
	font-size: 1.5em;
}
.twoColFixLtHdr #mainContent h3 {
	color: #0D5886;
	font-family: Tahoma, Geneva, sans-serif;
	text-shadow: #ccc 1px 1px 1px;
	margin-top: 10px;
	font-size: 1.3em;
}

.twoColFixLtHdr #mainContent .TxNewsTitle {
	font-size: 13px;
	font-weight: 700;
	color: #0D5886;
}
.twoColFixLtHdr #mainContent .TxNewsTitle a {
	color: #11548A;
}
.twoColFixLtHdr #mainContent .TxNewsTitle a:hover {
	color: #F90;
}



.twoColFixLtHdr #mainContent .date {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #666;
	display: block;
	margin-bottom: 3px;
}
.twoColFixLtHdr #mainContent .link {
	background-color: #11548A;
	width: 150px;
	padding: 3px;
	text-align: center;
	font-size: 0.9em;
}
.twoColFixLtHdr #mainContent .link a {
	color: #FFF;
	text-decoration: none;
}
.twoColFixLtHdr #mainContent .link a:hover {
	color: #FF0;
	text-decoration: none;
	font-weight: 700;
}


.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 #footer {
	background-color: #DDDDDD;
	background-image: url(../images/bkg-footer.jpg);
	height: 45px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	position: absolute;
	margin-top: 30px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.twoColFixLtHdr #sidebar1 ul li {
	font-size: 0.75em;
	list-style-type: none;
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: -40px;
	width: 130px;
	background-color: #11548A;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 9px;
}
.twoColFixLtHdr #sidebar1 ul li a {
	color: #FFF;
	text-decoration: none;
}
.twoColFixLtHdr #sidebar1 ul li a:hover {
	color: #FF0;
	text-decoration: none;
	text-shadow: #000 1px 1px 1px;
	font-weight: 700;
	margin-left: 3px;
}

.twoColFixLtHdr #sidebar1 h2 {
	font-size: 0.8em;
	color: #082C44;
	font-weight: 700;
	text-shadow: #ccc 1px 1px 1px;
}


.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-size: 0.7em;
	color: #FFF;
	text-shadow: #333 1px 1px 1px;
	text-align: right;
	padding-top: 15px;
	padding-right: 15;
}
.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;
}
