@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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(images/bckgrnd_2.jpg);
	background-repeat: repeat;
}
a:visited {
	color: #03C;
}
.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 #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#nav {
	font-family: "Trajan Pro";
	font-size: 16px;
	color: #03C;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	font-weight: bold;
	padding: 5px;
	background-color: #FFF;
}
#nav a {
	text-decoration: none;
}
#nav a:hover {
	color: #FC0;
}
.oneColFixCtrHdr #header {
	height: 100px;
	background-image: url(images/header_1.png);
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000;
	border-bottom-color: #000;
	padding: 0;
}
#logo {
	float: left;
	height: 100px;
	width: 85px;
}
.oneColFixCtrHdr #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-family: "Trajan Pro";
}
h4 {
	text-indent: 10px;
	margin: 0px;
	padding: 0px;
}
h2 {
	text-align: center;
	color: #072F7F;
	margin: 0px;
	padding: 10px;
}
p {
	text-align: justify;
	font-family: Verdana, Geneva, sans-serif;
	margin-left: 20px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
h3 {
	color: #072F7F;
	text-indent: 10px;
	margin: 0px;
	padding: 0px;
}
.oneColFixCtrHdr #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000;
	border-bottom-color: #000;
	height: 80px;
}
#footer a {
	font-size: 16px;
}
#footer a:hover {
	color: #FC0;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-family: "Trajan Pro";
	font-size: 14px;
	color: #03C;
	background-color: #FFF;
	font-weight: bold;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

