@charset "utf-8";
body {
	font: 90%/150% Verdana, Arial, Helvetica, sans-serif;
	background: #000 repeat-x;
	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: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
}
#container #contact {
	position: absolute;
	top: 0px;
	right: 0px;
	text-align: right;
	padding: 5px;
	font-weight: bold;
}
#container #navbar {
	position: absolute;
	top: 94px;
	right: 0px;
	width: auto;
	padding-right: 1px;
}
#navbar a {
	display: block;
	white-space: nowrap;
	padding: 4px;
	font-size: 12px;
	line-height: 12px;
	background: #288A63;
	color: #FFF;
	border: 1px solid #000;
	margin-left: 1px;
}
#navbar a:hover {
	background: #000;
}
#navbar ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#navbar li {
	float: left;
}
#header {
	background: #FFF url(images/body-bg.jpg) repeat-x;
	padding: 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. */
}
#mainContent {
	padding: 5px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#mainContent h1 {
	font-size: 16px;
	color: #118055;
	font-variant: small-caps;
	line-height: 100%;
	margin-top: 15px;
	margin-bottom: 10px;
}
#mainContent h2 {
	font-size: 14px;
	color: #128156;
	line-height: 100%;
	margin: 20px 0px 10px;
	padding: 0px;
}
#footer {
	padding: 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#128156;
	color: #FFF;
	text-align: center;
	font-size: 10px;
}
a {
	text-decoration: none;
	color: #118055;
}
a:hover {
	color: #000;
}
.QuoteAuthor {
	font-weight: bold;
	margin-bottom: 5px;
	padding-bottom: 0px;
	font-size: 12px;
}
blockquote {
	font-size: 12px;
	padding: 0px;
	margin-top: 5px;
}
.colorbackground {
	background-color: #E4F0EC;
}

