@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;
	background-color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #200000;
	width: auto;
	overflow: visible;
}
.twoColFixLtHdr #container {
	background: #FFFFFF; /* 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: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	overflow: hidden;
	width: 990px;
	visibility: visible;
} 
.twoColFixLtHdr #header {
	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. */
	background-color: #FFFFFF;
	overflow: hidden;
	height: 130px;
} 
.twoColFixLtHdr #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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 100px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 80px;
	padding-left: 15px;
	background-image: none;
	clip: rect(auto,auto,auto,auto);
	height: auto;
	display: inline;
	position: static;
	visibility: visible;
}
.twoColFixLtHdr #mainContent {
	position: relative;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 140px;
	padding: 0;
	text-align: center;
	color: #007F00;
	visibility: inherit;
} 
.twoColFixLtHdr #footer {
	color: #FFFFFF;
	font-weight: bold;
	height: 25px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-image: url(images/greenmenubar.jpg);
	line-height: normal;
} 
.twoColFixLtHdr #footer p {
	color: #FFFFFF;
	font-size: 12px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	margin: 0;
}
