/* <style type="text/css"> */

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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: none;
	background-position: center top;
	background-color: #FFFFFF;
	color: #000000;
}
.twoColLiqLtHdr #container {
	width: 1024px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px double #006600;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLiqLtHdr #header {
	background-image: url(image/top_banner.jpg);
	background-color: #006600;
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-repeat: repeat-x;
	background-position: left center;
	height: 150px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.twoColLiqLtHdr #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: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.twoColLiqLtHdr #sidebar1 {
	float: left;
	width: 155px;
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	background-image: url(image/sidebar_bg.jpg);
	background-repeat: repeat-y;
	background-position: center 140px;
	height: 1000px;
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	background-color: #CCCCCC;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
.twoColLiqLtHdr #sidebar1 h3, .twoColLiqLtHdr #sidebar1 p {
}

.twoColLiqLtHdr #mainContent {
	margin-top: 1%;
	margin-right: 0%;
	margin-bottom: 0;
	margin-left: 168px;
} 
.twoColLiqLtHdr #footer {
	background-image: url(image/low_banner.jpg);
	height:129px;
	background-color: #345500;
	color: #ffffff;
	text-align: right;
	margin-top: 30px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
} 
.twoColLiqLtHdr #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 */
	background-color: #003300;
}

/* Miscellaneous classes for reuse */
.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;
}
.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;
}
.style1 {
	color: #FFFFFF;
	background-color: #FFFFFF;
	background-image: none;
	background-repeat: repeat-x;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.style2 {
	color: #FFFFFF;
	background-color: #006600;
	background-image: none;
	background-repeat: repeat-x;
	font-weight: bold;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.style3 {
	font-size: 100%
}
.style4 {
	font-size: 100%;
	font-weight: bold;
	color: #003300;
}
.style6 {font-family: "Times New Roman", Times, serif}
.style9 {
	font-family: "Times New Roman", Times, serif;
	font-size: 10pt;
}
.style10 {font-size: 80%}

a[href] {
    color: #333300;
    background-color: transparent;
	text-decoration : none;
}

a:link, a:visited {
    color: #688F23; 
	font-weight: bold;
	text-decoration: underline;
}
a:hover {
    text-decoration: none;
	color: #8D9F6D;
}
a:active {color: #FF0000}

/*</style>*/