@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: #143287;
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
	background-color: #261E06;
}

.oneColFixCtrHdr #container {
	width: 720px; /* the auto margins (in conjunction with a width) center the page */ /*	border: soild red 8px; */
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #261E06;
	background-color: #FFFFFF;
	font-family: "Times New Roman" , Times, serif;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left:auto;
	margin-top: 5px;
	table-layout: fixed;
	position: relative;
	border-left: #261E06 1px solid;
	border-bottom: #4B3723 1px solid;
	border-right: #261E06 1px solid;
} 
.oneColFixCtrHdr #header {
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0;
}
.oneColFixCtrHdr #header 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 */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-color: #FFFFFF;
}
.oneColFixCtrHdr #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-top: 0;
	margin-left: auto;
	margin-bottom: 0
	margin-right: auto;
	background-color: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0;
	margin: 0;
	background-color:#FFFFFF;
}
a:link {
	color: #143287;
	font-size: None;
	font-style: normal;
}