@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: #0d3e0d;
	background-color: #708d36;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 87%;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	margin-bottom: 40px;
}
.twoColFixLtHdr #container {
	width: 950px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 8px solid #0e4f15;
	text-align: left;
	margin-top: 10 px;
	-webkit-border-radius: 20px;
	border-radius: 0px;
	background-color: #f5f6ce;
	background-repeat: no-repeat;
	background-image: url(../images/hg.jpg);
} 
.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: 10px 0;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: left;
	border-bottom-width: medium;
	border-bottom-color: #FFF;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px;
	margin-left: 25px;
	margin-top: -32px;
	font-style: normal;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: -10px;
}
.twoColFixLtHdr #mainContent {
	margin: -13px 20px 0 320px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 600px;
	text-transform: none;
	text-align: left;
	} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	font-size: small;
	text-align: center;
	border: 1 px;
	border-top: 1px;
	border-top-color: #666;
	background-repeat: no-repeat;
	background-image: 0;
} 
.twoColFixLtHdr #footer p {
	margin: 20px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	
}
.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;
}
h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 20px;
	font-color: #006600;
	text-decoration: none;
}


a:link, a:active  {
	color: #cc9966;
	text-decoration: none;
}

a:hover, a:visited{
	color: #cc6633;
	text-decoration: none;
}
.imgstyle_right {
	border: 2px solid #5F5D73;
	-webkit-box-shadow: -3px 3px 5px 3px rgba(59, 58, 71, 0.5);
	box-shadow: -3px 3px 5px 3px rgba(59, 58, 71, 0.5);
	float: right;
	margin-bottom: 5px;
	margin-left: 8px;
	margin-right: 2px;
	margin-top: 5px;
}
.imgstyle_left {
	border: 0px solid #006633;
	-webkit-box-shadow: -0px 0px 0px 0px rgba(59, 58, 71, 0.5);
	box-shadow: -0px 0px 0px 0px rgba(59, 58, 71, 0.5);
	float: left;
	margin-bottom: 5px;
	margin-left: 2px;
	margin-right: 5px;
	margin-top: 5px;
}
.imgstyle_center {
	border: 1px solid #5F5D73;
	-webkit-box-shadow: -3px 3px 3px 3px rgba(59, 58, 71, 0.5);
    box-shadow: -3px 3px 3px 3px rgba(59, 58, 71, 0.5); 
	float: none;
}
.twoColFixLtHdr #container #footer table tr th {

}
.twoColFixLtHdr #container #footer table tr td {
	font-weight: bold;
}
.twoColFixLtHdr #container #mainContent table tr th table tr th {
	text-align: left;
}
.twoColFixLtHdr #container #mainContent table tr th table {
	text-align: center;
}
