@charset "utf-8";
body  {
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000;
}
.twoColFixLtHdr #container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-image: url(../images/wrap.jpg);
	background-position: center;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	margin-top: 25px;
} 
.twoColFixLtHdr #contentWrap{
	background-image: url(../images/wrap.jpg);
	background-repeat: repeat-y;
}
.twoColFixLtHdr #header {
	background-image: url(../images/index_01.jpg);
	background-repeat: no-repeat;
	width: 900px;
	text-align: right;
	height: 127px;
	position: relative;
	z-index: 3;
} 
.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: 213px;
	float: left;
	padding-right: 25px;
	padding-left: 85px;
	position: relative;
	z-index: 2;
}
.twoColFixLtHdr #mainContent {
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #666;
	margin-left: 320px;
	padding-right: 35px;
	padding-left: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
	position: relative;
	z-index: 2;
} 
.twoColFixLtHdr #flash_header {
	background-image: url(../images/flash_header_02.jpg);
	background-repeat: no-repeat;
	height: 122px;
	width: 808px;
	padding-right: 46px;
	padding-left: 46px;
	padding-top: 48px;
	position: relative;
	z-index: 3;
}
.twoColFixLtHdr #menu_top {
	height: 45px;
	width: 900px;
	vertical-align: top;
	position: relative;
	z-index: 3;
}

.footer {
	background-image: url(../images/footer.jpg);
	background-repeat: no-repeat;
	width: 800px;
	text-align: right;
	padding-right: 100px;
	height: 60px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	background-position: bottom;
	margin-right: auto;
	margin-left: auto;
	vertical-align: bottom;
	padding-top: 336px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
	z-index: 1;
	top: -250px;
	position: relative;
}

.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;
}
.date {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #666;
}
.entryTitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-decoration: underline;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.sideMenu {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
}
a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	color: #000000;
	text-decoration: none;
}
a:active {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #F2BB00;
	text-decoration: none;
}

.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;
}
