@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: #6F4928;
	font-family: Arial, sans-serif, Helvetica, Verdana;
	font-size: 16px;
	font-weight: bold;
	background-color: #FFFFFF;
	background-image: url(../Images/header/background.jpg);
	background-repeat: repeat-y;
	background-position: center top;
}
.oneColFixCtrHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.oneColFixCtrHdr #header {
	text-align: center;
	background-color: #B3B02B;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #B3B02B;
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #B3B02B;
	border-bottom-color: #B3B02B;
	border-left-color: #B3B02B;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #B3B02B;
}
.oneColFixCtrHdr #footer {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.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 */
	color: #D66B01;
}
.center {
	text-align: center;
}


.copyright {
	float: left;
	width: auto;
	font-size: 14px;
	font-weight: bold;
	color: #D66B01;
	padding-top: 5px;
	padding-bottom: 10px;
}

.footnav {
	float: right;
	font-size: 14px;
	font-weight: bold;
	color: #D66B01;
	text-align: right;
	padding-top: 5px;
	padding-bottom: 10px;
}
.green {color: #B3B02B}

.omkOrange {
	color: #D66B01;
}

a:link {
	text-decoration: none;
	color: #D66B01;
	font-size: 14px;
}
a:visited {
	text-decoration: none;
	color: #D66B01;
	font-size: 14px;
}
a:hover {
	text-decoration: none;
	color: #B3B02B;
	font-size: 14px;
}
a:active {
	text-decoration: none;
	font-size: 14px;
	color: #D66B01;
}
.block {
	display: block;
}

.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;
}
