@charset "utf-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	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: #ffffcc;
}
.oneColFixCtrHdr #container {
	width: 720px;  /* using 20px -original width was 780, author change to 700 - less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFcc;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #70814B; 
	margin-bottom: 20px;
	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 #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: 10px 20px 10px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFcc;
}
.oneColFixCtrHdr #mainContent p {
	font: 0.8em/1.8em Arial, Helvetica, sans-serif;
	color: #333;
	margin-top: 0px;
}
.oneColFixCtrHdr #mainContent .homeTitle {
	color: #660033;
	letter-spacing: .3em;
	text-align: center;
	font: bold 24px/22px Georgia, "Times New Roman", Times, serif;
}
.oneColFixCtrHdr #mainContent .homeTitleSub {
	color: #660033;
	letter-spacing: .2em;
	text-align: center;
	font: bold 18px/20px Georgia, "Times New Roman", Times, serif;
}

.oneColFixCtrHdr #mainContent h1, h2, h3, h4, h5, h6 {
	color: #660033;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.oneColFixCtrHdr #mainContent h1 {
	font-size: 1.5em;
	line-height: 1.5em;
}
.oneColFixCtrHdr #mainContent h2 {
	font-size: 1.2em;
	line-height: 1.2em;
}
.oneColFixCtrHdr #mainContent h3, h4 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	line-height: 1em;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.oneColFixCtrHdr #mainContent h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	line-height: 1em;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.oneColFixCtrHdr #mainContent a:link {
	color: #660033;
	text-decoration: none;
	border-bottom: 1px dotted #660033;
}
.oneColFixCtrHdr #mainContent a:visited {
	color: #70814b;
	text-decoration: none;
	border-bottom: 1px dotted #70814b;
}
.oneColFixCtrHdr #mainContent a:hover {
	color: #a29542;
	text-decoration: none;
	background: #70814b;
}
.oneColFixCtrHdr #mainContent ul li {
	font: 0.8em/1.8em Arial, Helvetica, sans-serif;
	color: #333;
	padding-top: 0px;
	margin-top: 0px;
}
.oneColFixCtrHdr #mainContent ul li ul li {
	font-size: 100%;
}

.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #CFD5A1;
}
.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 */
	font: 0.7em Arial, Helvetica, sans-serif;
	color: #999;
	text-align: center;
}
.oneColFixCtrHdr #footer a:link {
	color: #660033;
	text-decoration: none;
	border-bottom: 1px dotted #660033;
}
.oneColFixCtrHdr #footer a:visited {
	color: #70814b;
	text-decoration: none;
	border-bottom: 1px dotted #70814b;
}


/****** primary navigation for all  pages ***********/
.oneColFixCtrHdr #header #navMain {
	margin: 0;
	padding: 0px;
	height: 30px;
	width: 718px;
	position: relative;
	background-color: #70814B;
}
.oneColFixCtrHdr #header #navMain ul {
	margin: 0;
	padding: 0;
	float: left;
}
.oneColFixCtrHdr #header #navMain ul li {
	list-style-type: none;
	float: left;
}
.oneColFixCtrHdr #header #navMain ul li a {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	color: #FFF;
	text-decoration: none;
	padding: 4px 1em;
	display: block;
	background-color: #70814B;
	line-height: 2em;
	margin: 0px;
}
.oneColFixCtrHdr #header #navMain ul li a:link {
	color:#FFF;
	text-decoration:none;
}
.oneColFixCtrHdr #header #navMain ul li a:visited {
	color:#FFF;
	text-decoration: none;
}
.oneColFixCtrHdr #header #navMain ul li a:focus {
	color:#FFF;
	text-decoration: none;
}
.oneColFixCtrHdr #header #navMain ul li a:hover {
	color:#70814b;
	background-color: #e7eae1;
	text-decoration: none;
}
.oneColFixCtrHdr #header #navMain ul li a:active {
	color:#70814b;
	background-color: #e7eae1;
	text-decoration: none;
} 
.oneColFixCtrHdr #header #navMain li a.current, #navMain  li a.current:hover, #navMain li a.current.active {
	color: #fff;
	background-color: #CFD5A1;
	text-decoration: none;
}
/****** end of primary navigation for all  pages ***********/
