@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: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(../images/background1.gif);
	background-repeat: repeat-x;
}

.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #EDE9DE; /* 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. */
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

.oneColFixCtrHdr #header {
	background: #C2A970; 
	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. */
}

.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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.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: #EDE9DE;
}

.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#C2A970;
}

.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 */
}

.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	background-color: #C2A970;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

a:link {
	text-decoration: underline;
	color: #003366;
}
a:visited {
	color: #473B1F;
}
a:hover {
	color: #FF0000;
	background-color:#FFFF99;
}
a:active {
	color:#003366;
}

hr {
	color: #000000;
	}

td, th {
	padding-top:2px;
	padding-right:3px;
	padding-bottom:2px;
	padding-left:4px;
	border-top-color: #8F763D;
	border-right-color: #8F763D;
	border-bottom-color: #8F763D;
	border-left-color: #8F763D;
	background-color: #FFFFFF;
}

table {
	border-collapse:collapse;
	border-top-color: #8F763D;
	border-right-color: #8F763D;
	border-bottom-color: #8F763D;
	border-left-color: #8F763D;
}

.imgFloatRight {
	float: right;
	margin-top: 2px;
	margin-right: 6px;
	margin-bottom: 2px;
	margin-left: 2px;
	border: 0.5px solid #CCCCCC;
}

.imgFloatLeft {
	float: left;
	border: 4px double #473B1F;
	margin-top: 2px;
	margin-right: 6px;
	margin-bottom: 2px;
	margin-left: 2px;
}

.copyright {
	font-size: 11px;
}

.style1 {
	font-size: 80%;
	}

INPUT[type="text"] {
	font-size: 12pt;
	font-weight: bold;
}

ul.nav {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;
	}

ul.nav a {
	display: block;
	width: 160px;
	height: 35px;
	line-height: 35px;
	text-decoration: none;
	font-size: 95%;
	font-weight: normal;
	text-indent: 16px;
	}
	
ul.navfoot a:hover {
	background-color:#492E25;
	color: #FFFFFF;
	}
		
ul.nav li {
	display: inline;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	}

* html ul.nav a {height: 1px; }/* To fix IE 6 bug */

ul.navfoot {
	list-style-type: none;
	padding-left: 0px;
	padding-right: 0px;
	margin: 5px;
	}

ul.navfoot a {
	display: inline;
	font-size: 85%;
	text-decoration: none;
	padding-left: 10px;
	color: #000000;
	}
	
ul.navfoot li {
	display: inline;
	}

* html ul.navfoot a {height: 1px; }/* To fix IE 6 bug */
