@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: Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
	background-color: #FFF;
}
.thrColFixHdr #container #mainContent p object {
	margin: 0px;
	padding: 0px;
}

.thrColFixHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #3b5d1c;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-bottom: 0;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
} 
.thrColFixHdr #header {
	background-color: #FFF;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	height: 215px;
	width: 780px;
} 
#header ul{
	margin:0;
	padding:0;
	list-style:none;
	float: right;
	border:thin;
}
.thrColFixHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	position: absolute;
}
#header li a{
	padding:.2em .5em;
	font:Verdana, Geneva, sans-serif;
	font-size:.8em;
	font-weight:bold;
	text-decoration:none;
	line-height:2em;
	margin-right:.5em;
	border:thin;
}
#header li a.current,#header li a.current:hover,#header li a.current:active {
	background-color:#f4f3c8;
	color:#3b5d1c;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 215px;
	margin-bottom: 0;
	margin-left: 120px;
	text-align: justify;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #3b5d1c;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	background-color: #fff;
	font-size: 1em;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #3b5d1c;
} 

#mainContent h3 {
	text-align: center;
	color: #3b5d1c;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
}
#mainContent h2 {
	color: #75012e;
}

.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 100px; /* padding keeps the content of the div away from the edges */
	background-color: #FFF;
	padding-top: 0px;
	padding-right: 0.5em;
	padding-left: .5em;
	clear: both;
	text-align: center;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	background-color: #FFF;
	clear: right;
	font-family: Tahoma, Geneva, sans-serif;
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-right: .5em;
	padding-bottom: 0px;
	padding-left: .5em;
}
.thrColFixHdr #footer {
	color: #FFF;
	background-color: #3b5d1c;
	clear: both;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	height: 45px;
} 
.thrColFixHdr #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-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	font-size: 0.7em;
	line-height: 1.5em;
}
.thrColFixHdr #container #footer p a {
	color: #FFF;
}
.thrColFixHdr #container #sidebar1 h4 {
	text-align: center;
	color:#3b5d1c;
	border-top-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #3b5d1c;
	font-size: small;
}
.thrColFixHdr #container #sidebar1 #MenuBar2 li a strong {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: .9em;
	text-align: left;
}
.thrColFixHdr #container #sidebar1 p a {
	font-size: 12px;
	color: #000;
}
.thrColFixHdr #container #sidebar1 p a:hover {
	color: #75012e;
	font-weight: bold;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}


