@charset "UTF-8";
body {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
	background: #24adda;
	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: #ffffff;
}
a { 
	color: #ffffff;
	text-decoration: none;
}
a:link {
	color: #ffffff;
}
a:visited {
	color: #ffffff;
}
a:hover {
	color: #24adda;
}
a:active {
	color: #24adda;
}
.oneColFixCtrHdr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #293e4b;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #24adda; 
	background-image: url(../images/header.png);
	background-repeat: no-repeat;
	background-position: top;
	width: 800px;
	height: 300px;
	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. */
}
.oneColFixCtrHdr #header2 {
	background: #24adda; 
	background-image: url(../images/header2.png);
	background-repeat: no-repeat;
	background-position: top;
	width: 800px;
	height: 300px;
	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. */
}
.oneColFixCtrHdr 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 */
	font-size: 24px;
	font-weight: normal;
	color: #c7c3ae;
	padding: 10px 0 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr h2 {
	margin: 0;
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
	color: #24adda;
	padding: 0 0 0 40px;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #293e4b;
	width: 720px;
	min-height: 500px;

}

.oneColFixCtrHdr #mainContent #nav_main ul {
	border-top: 1px solid #3f80a9;
	border-bottom: 1px solid #3f80a9;
	padding: 5px 0 5px 0;
	text-align: center;
}
.oneColFixCtrHdr #mainContent #nav_main ul li {
	list-style-type: none;
	display: inline;
	border-right: 1px solid #3f80a9;
	padding: 0 12px;
	text-transform: uppercase;
	letter-spacing: .02em;
	font-family: Arial, Helvetica, sans-serif;
}
.oneColFixCtrHdr #mainContent #nav_main ul li.last {
	border-right: none;
}
.oneColFixCtrHdr #mainContent p {
	padding: 0 45px;
	line-height: 1.8em;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
		background-image: url(../images/footer.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	width: 800px;
	height: 24px;
}
.oneColFixCtrHdr #mainContent p img.flt_left {
	padding: 0 20px 20px 0;
}