@charset "utf-8";
body  {
	font: 12px Arial, Helvetica, sans-serif;
	background: #F0FFF0;
	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;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto 0;
	text-align: left;
	border-top: 1px solid #CCCCCC;
	border-right: 2px outset #4E7E54;
	border-bottom: 2px outset #4E7E54;
	border-left: 1px solid #CCCCCC;
} 
#header {
	background: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
} 
a, a:link, visited {
	color: #4e7e54;
	text-decoration: none;
	font-weight: bold;
}
a:hover, a:active, a:focus {
	color: #FF323F;
	text-decoration: underline;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 10px;
	display: inline;
}

#sidebar1 ul
{
list-style-type: none;
padding: 0;
margin: 0;
}
#sidebar1 li {
	margin: 0.3em 0;
	font-size: 13px;
	font-weight: bold;
	background: url(images/apple.jpg) no-repeat 0.2em 0.2em;
}

#sidebar1 a {
	display: block;
	color: #FF323F;
	width: 9em;
	padding: 0.7em 0.5em 0.7em 3.5em;
	text-decoration: none;
	border: 1px solid #FFFFFF;
}
#sidebar1 a:hover {
	color: #4e7e54;
	background: #F0FFF0;
	width: 9em;
	padding: 0.7em 0.5em 0.7em 3.5em;
	text-decoration: none;
	background: #f0fff0 url(images/apple_green.jpg) no-repeat 0.2em 0.2em;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	border-left: 1px solid #FFFFFF;
}
#mainContent {
	margin: 0 0 0 190px; /* 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 0 15px;
	border-left: 1px solid #FF323f;
} 
#mainContent p {
	font: 12px/17px Arial, Helvetica, sans-serif;
}
a img {
	border:none;
}

h1 {
	font: 24px/normal Arial, Helvetica, sans-serif;
	color: #4e7e54;
}
h2 {
	font-size: 18px;
}
h3 {
	font-size: 14px;
}
h4 {
	color: #FF323f;
	background: #F0FFF0 url(images/apple_green.jpg) no-repeat left center;
	padding: 6px 5px 6px 35px;
	font: bold 14px Arial, Helvetica, sans-serif;
	border: 1px solid #4e7e54;
}
blockquote {
	font: italic 12px/16px Arial, Helvetica, sans-serif;
}

#footer {
	padding: 5px; 
	background:#FFFFFF;
	border-top: 1px solid #FF323F;
} 

#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: 8px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 11px;
}
#footer a:link, visited {
	color: #4e7e54;
	text-decoration: none;
	font-weight: bold;
}
#footer a:hover, a:active, a:focus {
	color: #FF323F;
	text-decoration: underline;
}

.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;
}
.font11px {
	font-size: 11px
}
#container #mainContent dl {
	font: 12px/17px Arial, Helvetica, sans-serif;
}
.box {
	margin: 0;
	padding: .3em;
	border: 0.025em solid #4e7e54;
	display: block;
	background: #F0fff0;
	float: right;
}
.box a:link, visited {
	color: #4e7e54;
	text-decoration: none;
	font-weight: bold;
}
.box a:hover, a:active, a:focus {
	color: #FF323F;
	text-decoration: underline;
}
