@charset "UTF-8";
body  {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #006f82;
}
#container  {
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
} 
#header {
	width: 770px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	height: 182px;
} 
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	margin-right: 60px;
	padding-left: 0px;
}
#mainContent {
	margin-top: 0;
	margin-right: 300px;
	margin-bottom: 0px;
	margin-left: 60px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
} 
#mainContent-fullwidth {
	margin-top: 0;
	margin-right: 60px;
	margin-bottom: 0px;
	margin-left: 60px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#footer {
	width: 850px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #FFFFFF;
	background-image: url(images/footercorners.gif);
	background-position: center bottom;
	background-repeat: no-repeat;
} 
#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 */
}
.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;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
h1 {
	margin: 0px;
	font-family: Arial, Verdana, sans-serif;
	font-size: 20px;
	font-weight: normal;
	color: #006F82;
	border-bottom-width: 6px;
	border-bottom-style: solid;
	border-bottom-color: #EEEEEE;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
}
h2 {
	font-family: Arial, Verdana, sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	color: #006F82;
}
h3 {
	font-family: Arial, Verdana, sans-serif;
	font-size: 16px;
	color: #666666;
	margin: 0px;
	padding: 0px;
	font-weight: normal;
	line-height: 20px;
}
h4 {
	font-family: Arial, Verdana, sans-serif;
	font-size: 14px;
	color: #666666;
	margin: 0px;
	padding: 0px;
	font-weight: normal;
	line-height: 20px;
}
h5 {
	margin: 0px;
	font-family: Arial, Verdana, sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: #666666;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
p {
	padding: 0px;
	margin: 0px;
	font-family: Arial, Verdana, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #333333;
}
li {
	padding: 0px;
	margin: 0px;
	font-family: Arial, Verdana, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #333333;
}
.p-bluebold {
	font-family: Arial, Verdana, sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	color: #006F82;
}
.txt-sml-allcaps {
	font-family: Arial, Verdana, sans-serif;
	font-size: 10px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	color: #666666;
	text-transform: uppercase;
}
a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	color: #666666;
	text-decoration: none;
}
a:hover {
	color: #666666;
	text-decoration: underline;
}
a:active {
	color: #666666;
	text-decoration: none;
}
#footer-text {
	width: 730px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
}
.txt-footer {
	font-family: Arial, Verdana, sans-serif;
	font-size: 11px;
	color: #999999;
	letter-spacing: 1px;
}
.txt-sidebar {
	font-family: Arial, Verdana, sans-serif;
	font-size: 12px;
	color: #333333;
	line-height: 20px;
	padding: 14px;
}
.txt-sidebar-white {
	font-family: Arial, Verdana, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#footer-text a:link {
	width: 730px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	color: #4c8792;
}
#footer-text a:hover {
	width: 730px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	color: #4c8792;
	text-decoration: underline;
}
#footer-text a:visited {
	width: 730px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	color: #4c8792;
}
#footer-text a:active {
	width: 730px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	color: #4c8792;
}
.sidebar-header-blue {
	background-color: #006F82;
	height: 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.sidebar-content-blue {
	background-color: #B3D5DC;
	height: 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.sidebar-header-brown {
	background-color: #96761e;
	height: 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.sidebar-content-brown {
	background-color: #dbdbb3;
	height: 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.sidebar-header-green {
	background-color: #85b125;
	height: 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.sidebar-content-green {
	background-color: #d6f397;
	height: 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.navbar {
	background-color: #999999;
	height: 36px;
	font-family: "Trebuchet MS", Arial, sans-serif;
	color: #FFFFFF;
	font-size: 12px;
	width: 730px;
	margin-left: 20px;
	margin-right: 20px;
	font-weight: bold;
	letter-spacing: 2px;
}
.navbar a:link {
	color: #FFFFFF;
}
.navbar a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.navbar a:active {
	color: #FFFFFF;
}
.navbar a:visited {
	color: #FFFFFF;
}
.pic-leftalign {
	border: 2px solid #CCCCCC;
	margin-right: 20px;
	margin-bottom: 15px;
}

