body {
	font-size: 10pt;
	background: #e3e4e3;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

a:link {
	color: #0a8d2f;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #0a8d2f;
}
a:hover {
	text-decoration: none;
	background:#5da526;
	color: #FFFFFF;
}
a:active {
	text-decoration: none;
	color: #0a8d2f;
}
div#mainContent a {
	color: #0a8d2f;
	text-decoration: underline;
}
div#mainContent a:visited {
	text-decoration: underline;
	color: #0a8d2f;
}
div#mainContent a:hover {
	text-decoration: none;
	background:#5da526;
	color: #ffffff;
}
div#mainContent a:active {
	text-decoration: none;
	color: #0a8d2f;
}

h1 {
	font-size: 20px;
	color: #009900;
}
h2 {
	font-size: 16px;
	color: #555555;
	margin: 5px 0px 0px 0px;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #666666;
}
h4 {
	font-size: 12px;
	color: #009900;
	margin: 5px 0px 0px 0px;
}
h5 {
	font-size: 14px;
	color: #009900;
	margin: 0px;
}
h6 {
	font-family: arial, helvetica, sans-serif;
	font-size: 16px;
	color: #009900;
	margin: 0;
}

body #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 955px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

body #header {
	height: 228px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	background: #5da526;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
body #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

body #sidebar2 {
	/*position: absolute;
	top: 228px;
	right: 0px;*/
	float:right;
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 10px; /* padding keeps the content of the div away from the edges */
}
body #mainContent {
	margin: 0 360px 20px 10px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: auto;
}
body #footer {
	clear:both;
	background:#5da526;
	color: #FFFFFF;
} 
body #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
div#feedback {
	min-height:700px;
	height:auto !important;
	height:700px;
}

