
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background:#929292;
	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: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/backgd.gif);
	background-repeat:repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {  
	padding: 0;  
} 


h2 {
	text-decoration: none;
	font-color: #000000;
	line spacing: 1.2 em;
	font-size: 14px;
	font-style:normal;
	padding-bottom: 0;
	margin-bottom: 0;
}
h3 {
	text-decoration: none;
	font-color: #000000;
	line spacing: 1.5 em;
	font-size: 13px;
	font-style:normal;
}
#sidebar {
	text-align: center;
	width: 205px;
	float: right; 
	padding: 0px;
	
}

#footer {
	background-color: #8db69c;
	height: 43px;
	width: 750px;	
}
#footer p {
	font-size: 11px;
	padding: 13px 0px 0px 25px;
	margin: 0;
	color: #000000;
}
#footer a:link {
	color:#000000;
	text-decoration: underline;
}
#footer a:hover {
	color:#188a43;
	text-decoration: underline;
}
#navbar {
	width: 510px;
	color: #188a43;
	font-size: 15px;
	text-align: left;
	padding: 10px 0px 10px 0px;
	margin: 0px;
}
#navbar a:link, a:visited {
 	color: #188a43;
 	text-decoration: none;
}
#navbar a:hover {
	color: #000000;
	text-decoration: underline;
}
#maincontent { 
	margin: 0;
	padding: 0px 10px 10px 25px;
	width: 510px;
	font-size:12px;
	line-height: 1.5em;
} 

#maincontent ul  {
	text-decoration: none;
	line-height:1.8em;
	margin:0;
	padding:0px 0px 0px 15px;
	font-size: 12px;
	list-style-type: bullet;
	list-style-positon: outside;
}

.quotetext {
	padding: 15px 8px 8px 15px;
	text-align: left;
	color: #188a43;
	font-style: italic;
	line-height: 1.8em;
	margin:0;
	font-size: 12px;
}
.quotetextmain {
	padding: 15px 8px 8px 15px;
	text-align: left;
	color: #188a43;
	font-style: italic;
	line-height: 1.8em;
	margin:0;
	font-size: 12px;
	width: 510px;
}

.fltleft { 
	float: left;
	padding: 0;
	margin: 12px 15px 15px 0px;
}
.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;
	padding: 0;
	margin: 12px 0px 15px 15px;
}
.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;
}