@charset "UTF-8";

/*****************************************
              Layout Styles
******************************************/
body {
	background: #011A44;
	margin: 0; /* 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: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.oneColFixCtrHdr #container {
	width: 760px;  /* using 40px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #F00;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: url(images/header.gif);
	height: 142px;
	margin: 0px; 
	padding: 0px;
}
.oneColFixCtrHdr #container #header h1 {
	text-indent: -9999px; /* move text (Crazy Paint) included for accessibility and search engines off-screen. */
	margin: 0px; /*prevent margin collapse*/
}
.oneColFixCtrHdr #container #header p {
	text-indent: -9999px; /* move text (address, phone) included for accessibility and search engines off-screen. */
}

/* NAV BAR */
.oneColFixCtrHdr #navcontainer {
	margin: 0px;
	padding: 0px;
	width: 758px; /* navcontainer envelope slightly smaller than container div to prevent "spillage" */
}
#navcontainer ul { /* for accessibility html navigation is unordered list */
	padding-left: 0; /* prevents navcontainer from displaying beyond right edge of container */
	margin: 0;
	background-color: #F00;
	color: #FFF;
	float: left;
	width: 100%;
	padding-right: 3px;
}
#navcontainer ul li {
	display: inline; /* displays list along horizontal */
	font-size: 0.95em;
}
#navcontainer ul li a {
	padding: 0.5em 1.05em 0.2em; /* right - left padding must be the same to center text in mouseover */
	background-color: #F00;
	color: #FFF;
	text-decoration: none;
	float: left;
	font-weight: bold;
}
#navcontainer ul li a:hover {
	background-color: #344869;
	color: #FFF;
	text-decoration: underline;
}
/* END NAV BAR */

.oneColFixCtrHdr #mainContent {
	padding: 10px 20px 5px;
	background: #344869;
	margin: 0px;
}
.oneColFixCtrHdr #footer {
	text-align: center;
	padding-top: 7px;
	margin: 0px;
}
.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;
}

/*****************************************
           Presentation Styles
******************************************/

.oneColFixCtrHdr #footer p {
	margin: 0; /*prevent margin collapse*/
	padding: 10px 0; 
	font-size: .7em;
}
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	margin-top: 1em;
	font-weight: bold;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
}
h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-style: italic;
	font-weight: bold;
}
p {
	font-size: 0.9em;
	line-height: 1.4em;
}
.splatList {
	font-size: 0.9em;
	line-height: 1.8em;
	list-style-image: url(images/bullet.gif);
}
a:link {
	color: #FF0000;
	text-decoration: none;
}
a:visited {
	color: #FF0000;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
	text-decoration: underline;
}
a:active {
	color: #FFFFFF;
	text-decoration: underline;
}
.required {
	color: #FF0000;
}
