@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: #6B8E23;
	background-image: url(images/backgrounds/body.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#container  {
	width: 800px;
	margin: 0 auto;
	text-align: left;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #6B8E23;
	font: 12px/1.4em Verdana, Arial, Helvetica, sans-serif;
	color: #663300;
	background-color: #fffacd;
	background-image: url(images/backgrounds/content1.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 220px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	text-align: right;
	margin-top: 250px;
}
#mainContent  {
	margin-top: 280px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 20px;
} 
#footer {
	font-size: 10px;
	color: #999966;
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999966;
	padding-top: 10px;
	padding-bottom: 10px;
}
.largebold {
	font-size: 14px;
	font-weight: bold;
}
.largeboldgreen {
	font-size: 14px;
	font-weight: bold;
	color: #6B8E23;
}
ul {
	margin-left: 10px;
	padding-left: 0px;
	margin-top: -10px;
}
a {
	color: #006699;
	text-decoration: none;
}
img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
a:hover {
	color: #cc3300;
}
.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;
	width: 200px;
	color: #996600;
	font-size: 10px;
	margin-left: 20px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	width: 200px;
}
.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-size: 14px;
	color: #336600;
	font-weight: normal;
	margin-bottom: -10px;
}
h3 {
	font-size: 14px;
	color: #336600;
	font-weight: bolder;
	margin-bottom: -10px;
}
.small {
	font-size: 10px;
	color: #666666;
}
