@charset "utf-8";
body {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	background-repeat: repeat;
	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;
	background-color: #000000;
}


.oneColFixCtrHdr #container {
	width: 900px;  /* default width is 760px;using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #EDE9DE;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	margin-top: 4px;
	border: 1px solid #473B1F;
	text-align: left; /* this overrides the text-align: center on the body element. */
}


.oneColFixCtrHdr #header {
	background: #C2A970; 
	height: 128px;
	padding: 0 60px 0 60px;  /* 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-top: 5px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #EDE9DE;
}

.oneColElsCtrHdr #container #mainContent li {
	line-height: 125%;
}




.oneColFixCtrHdr #footer {
	background-color: #C2A970;
	margin-top: 0px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.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:#000000;
}

a.button {
	border: solid 1px #473B1F;
	background: #B1B1B1;
	color:#FFFFFF;
	font-weight:bold;
	border-width: 4px;
	border-style: solid;
	border-top-color: #DFDFDF;
	border-right-color: #666666;
	border-bottom-color: #333333;
	border-left-color: #858585;
	text-decoration: none;
	}

a:hover.button {
	color: #FFFF99;
	background:#999999;
	border-top-color: #333333;
	border-right-color: #858585;
	border-bottom-color: #DFDFDF;
	border-left-color: #666666;
}

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;
}

.style1 {
	font-size: 60%;
	font-style: italic;
}

.directoryName {
	font-weight: bold;
}

.directoryAddress {
}

.directoryFax {
	font-style: italic;
	font-size: smaller;
}

.copyright {
	font-size: 11px;
}

.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;
}

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

















