@charset "utf-8";
body {
	background: #ffffff;
	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: #003366;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 85%;
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.oneColFixCtrHdr #container {
	width: 850px;
	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. */
	background-color: #1D3D64;
}
.oneColFixCtrHdr #header {
	padding: 0 10px 0 20px;  /* 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: #1D3D64;
	color: #FFFFFF;
}
.oneColFixCtrHdr #head2 table tr td {
	background-color: #FFFFFF;
	color: #1D3D64;
	margin: 0px;
	padding: 0px;
}


.oneColFixCtrHdr #header h1 {
	font-size: 26px;
	padding-top: 25px;
	margin: 0;
	font-weight: bold;
}
.oneColFixCtrHdr #header h2 {
	font-size: 16px;
	padding-top: 10px;
	padding-left:10px;
	margin: 0;
	font-style: italic;
}
.oneColFixCtrHdr .bordered {
	border: 1px solid #1D3D64;
}
.oneColFixCtrHdr #head2 td {
	border: 1px solid #1D3D64;
	border-collapse:collapse;
}

.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 #newsbox {

}
.oneColFixCtrHdr #newsbox p {
	padding-right: 5px;
	padding-left: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 11px;
}
.oneColFixCtrHdr #newsbox h2 {
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.oneColFixCtrHdr #footer {
	background:#ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-top-color: #1d3d64;
	border-right-color: #1d3d64;
	border-bottom-color: #1d3d64;
	border-left-color: #1d3d64;
	clear: both;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
.oneColFixCtrHdr #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 */
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.bluebg {
	color: #FFFFFF;
	background-color: #1D3D64;
}
.shaded {
	background-image: url(../images/div180bg.gif);
	background-repeat: repeat-y;
	background-position: right;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
