@charset "utf-8";
/* CSS Document */

body {
	font: 85% Verdana, Arial, Helvetica, sans-serif;
	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 */
	
}
#container {
	
	background: #F4FCE5;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	
	
}
#mainContent {
	padding: 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
h2 {
	background:#006233;
	color:#FFF;
font-size:16px;
text-align:left;
font-weight:bold;
}
h3 {
background-color:transparent;
color:#006233;
font-size:14px;
text-align:left;
font-weight:bold;
}
a:link { 
	color: #006233;
	background-color:transparent;
	text-decoration: none;
	font-weight: bold;
}
a:visited { 
	color: #999;
	background-color:transparent;
	text-decoration: none;
	font-weight: bold;
}
a:hover {  
	color: #BCDB30;
	background-color:transparent;
	text-decoration:underline;
	font-weight: bold;
}
ul li {
	font-size:12px;
}
.italics {
	font-style:italic;
}