@charset "windows-1252";
/* CSS Document */

body {
	font: 1em Tahoma, Verdana, Arial, Helvetica, sans-serif;
	background-color: #46a7de;
	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;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #46a7de;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background-color: #ffffff; 
	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. */
	margin: 0;
}
.oneColFixCtrHdr #header img {
	padding: 0;
	margin: 0;
}

.oneColFixCtrHdr #nav {
	float: left;
	width: 100%;
	margin: 0;
	padding: 0px;
	list-style-type: none;
	background-color: #46a7de;
	background-image: url(images/nav_bg.jpg);
	background-repeat: no-repeat;
	border-bottom: 1px solid #46a7de;
}
.oneColFixCtrHdr #nav li {
	float: left;
	margin: 0;
	padding: 0;
	font-size: .75em;
	border-right: 1px solid #46a7de;
}
.oneColFixCtrHdr #nav li.navStatic {
	display: block;
	float: left;
	color: #ffffff;
	padding: 6px 12px;
	background-color: #46a7de;
}
.oneColFixCtrHdr #nav a {
	display: block;
	float: left;
	text-decoration: none;
	color: #000000;
	padding: 6px 12px;
}
.oneColFixCtrHdr #nav a:hover {
	display: block;
	float: left;
	text-decoration: none;
	color: #ffffff;
	background-color: #46a7de;
}


.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

.oneColFixCtrHdr #mainContent h1 {
	font-size: 1.5em;
	line-height: 1.25em;
	padding: 12px 0 12px 0;
	margin: 0;
	color: #46a7de;
}
.oneColFixCtrHdr #mainContent h2 {
	font-size: 1.1em;
	line-height: 1.5em;
	padding: 12px 0 0 0;
	margin: 0;
	color: #000000;
}
.oneColFixCtrHdr #mainContent p {
	font-size: .9em;
	line-height: 1.1em;
	padding: 0 0 .5em 0;
	margin: 0;
}
.oneColFixCtrHdr #mainContent li {
	font-size: .9em;
	line-height: 1.1em;
	margin: 0 0 .75em 0;
	padding: 0;
}
.oneColFixCtrHdr #mainContent a {
	color: #46a7de;
}


.clearfloat {
	clear: both;
}
.floatLeft {
	float: left;
	padding: 0 8px 0 0;
}
.floatRight {
	float: right;
	padding: 0 0 0 8px;
}
