@charset "utf-8";
* {
	margin: 0; /* it's good practice to zero the margin and padding of the default element to account for differing browser defaults */
	padding: 0;
	border: 0;
}
.fltrt {
	float: right; /* this class can be used whenever you wish to float an element to the right side of the page. The floated element must be placed above the element that will display next to it in the source code. */
	margin-left: 8px;
}
.fltlft {
	float: left; /* this class can be used whenever you wish to float an element left on the page */	
	margin-right: 8px;
}
body {
	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: #333;
	background-image: url(../images/_background.png);
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-color:#850001;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
}
#container {
	width: 808px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*	border: 1px solid #000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/main_back2.jpg);
	background-repeat: repeat-y;
}
/* #headerOverlay {
	text-align: center;
	margin-left: 700px;
	padding-top: 5px;
} */
#headerWrapper {
	background-image: url(../images/header_pic.jpg);
	background-repeat: no-repeat;
	height: 88px;
	width: 808px;
}
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #FFF;
	margin: 0px;
}
#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 */
}
#mainContent {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
#mainContent p {
	line-height: 1.5em;
	margin-bottom: 1em;
}
#footer {
	background-image: url(../images/footer.jpg);
	padding: 0px, 10px;
	background-repeat: no-repeat;
	height: 105px;
}
#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 */
	font-weight: bold;
	color: #333;
	text-align: center;
}
a, a:link {
	color:#CD1201;
	text-decoration:none;
}
a:hover, a:active {
	color:#CD1201;
	text-decoration:underline;
}
img {
	border: none;
}
a img {
	border: none;
}
h1 {
	font-size: 1.3em;
	font-weight: bold;
	color: #CD1201;
	margin-top: 1em;
	margin-bottom: 0.5em;
}
h2 {
	font-size: 0.85em;
	font-weight: bold;
	color: #CD1201;
}
#navChoices {
	width: 100%;
	height: 80px;
}
#bestofoc {
	margin-right: 15px;
}
#flashHeader {
	margin: 0px;
	padding: 0px;
	height: 118px;
}
