@charset "UTF-8";
html {
height: 100%;
}

body {
	background: #FFFFFF;
	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: #696156;
	height: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	
}
#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	position: relative;
	min-height:100%;
}
#header {
	margin: 40px 20px 0;  /* 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. */
	background-color: #FFFFFF;
	height: 120px;
	text-align: center;
	vertical-align: bottom;
}
#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 */
}
#mainContent {
	padding: 0px 75px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	vertical-align: top;
	font-weight: normal;
}

#mainContent h1 {
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #666666;
}


#mainContent h2 {
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #85bb3d;
}

#mainContent h3 {
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #00325e;
	font-style: italic;
	font-weight: normal;
}

#mainContent p, li {
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #666;
	margin-right: 2.5em;
}

#footer {
	padding: 10px 75px;
	position: absolute;
	font-size: 10px;
	color: #999999;
	background-color: #FFFFFF;
	width: 750px;
}
#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: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}



#footer a {
	text-decoration: none;
	color: #85bb3d;
}
#footer a:hover {
	text-decoration: underline;
	color: #85bb3d;
}

#header ul {
	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. */
	background-color: #FFFFFF;
	text-align: center;
	list-style-type: none;
	margin-top: -14px;
}

#header li {
	font-size: 13px;
	margin-right: 0.1em;
	margin-left: 0.1em;
	display: inline;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	text-decoration: none;
	color: #7BC143;
	line-height: 1.2em;
	font-weight:bold;
}
/*
#header a:hover {
	margin-right: 3px;
	margin-left: 3px;
	display: inline;
	text-decoration: underline;
	color: #7BC143;
}
#header a {
	margin-right: 3px;
	margin-left: 3px;
	display: inline;
	text-decoration: none;
	color: #696156;
}
*/

#header li a:link {color: #b4b0aa; display:inline; text-decoration:none; margin:0 3px; font-weight:bold; font-size:13px;}     /* unvisited link */
#header li a:visited {color: #b4b0aa; display:inline; text-decoration:none; margin:0 3px; font-weight:bold;}  /* visited link */
#header li a:hover {color: #7BC143; display:inline; text-decoration:none; margin:0 3px; font-weight:bold;}   /* mouse over link */
#header li a:active {color: #7BC143; display:inline; text-decoration:none; margin:0 3px; font-weight:bold;}   /* selected link */

/* DARK CLASS IS FOR HOMEPAGE - all links are the same */
#header ul.dark li a:link, #header ul.dark li a:visited {color: #696156; display:inline; text-decoration:none; margin:0 3px; font-weight:bold; font-size:13px;}     /* unvisited & visited link */
#header ul.dark li a:hover, #header ul.dark li a:active {color: #7BC143; display:inline; text-decoration:none; margin:0 3px; font-weight:bold;}   /* selected and mouse over link */

/* ACTIVE CLASS IS FOR CURRENT PAGE - all links are the same */
#header li a.active:link,#header li a.active:visited,#header li a.active:hover,#header li a.active:active {color: #7BC143; display:inline; text-decoration:none; margin:0 3px; font-weight:bold; font-size:13px;}     /* unvisited link */

/* ACTIVE CLASS IS FOR SUBNAV ON CURRENT PAGE - all links are the same */
#header ul.subnav li a.active:link,#header ul.subnav li a.active:visited,#header ul.subnav li a.active:hover,#header ul.subnav li a.active:active {color: #7BC143; display:inline; text-decoration:none; margin:0 3px; font-weight:bold; font-size:11px;}     /* unvisited link */

/* SUBNAV CLASS IS FOR HOMEPAGE - all links are the same */
#header ul.subnav li a:link, #header ul.subnav li a:visited {color: #696156; display:inline; text-decoration:none; margin:0 3px; font-weight:bold; font-size:11px;}     /* unvisited & visited link */
#header ul.subnav li a:hover, #header ul.subnav li a:active {color: #7BC143; display:inline; text-decoration:none; margin:0 3px; font-weight:bold;}   /* selected and mouse over link */


 #mainContent a {
	text-decoration: none;
	color: #85bb3d;
}
#mainContent a:hover {
	text-decoration: none;
	color: #85bb3d;
}

#mainContent .bloghead {color: #7BC143; display:inline; text-decoration:none; font-weight:bold; font-size:13px;}     /* news headline */
.creativeIndent {
	margin-left: 65px;
}
#head4 {
	color: #333;
}
