@charset "UTF-8";
/* CSS Document */
body {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}
.twoColFixLtHdr #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; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	}
#header {
	position: relative;
	background: url(../images/pagebanner.jpg) top no-repeat;
	height: 132px;
	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. */
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable */ 
}
a.partners:link, a.partners:visited {
	position: absolute;
	top: 112px;
	left: 12px;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	color: #999999;
}
a.partners:hover, a.partners:active {
	text-decoration: underline;
	color: #0A6D50;
}
#navbar ul.nav {
	position: absolute;
	top: 95px;
	right: 0;
	list-style-type: none;
	padding: 5px 0;
}
#navbar ul.nav li {
	display: inline;
}
#navbar ul.nav a:link {
	border: none;
	border-right: 1px solid #666666; 
	padding: 5px 12px;
	margin: 0;
	background: url(../images/bar_background.png) top repeat-x;
	font-size: 12px;
	text-decoration: none;
	color: black;
}
#navbar ul.nav a:visited {
	border: none;
	border-right: 1px solid #666666; 
	padding: 5px 12px;
	margin: 0;
	background: url(../images/bar_background.png) top repeat-x;
	font-size: 12px;
	text-decoration: none;
	color: black;
}
#navbar ul.nav a:hover {
	background: url(../images/linkhover_background.png) top repeat-x;
	color: white;
}
#navbar ul.nav a:active {
	background: url(../images/linkhover_background.png) top repeat-x;
	color: white;
}
#navbar ul.nav a.right:link {
	border: none;
	padding: 5px 12px;
	margin: 0;
	background: url(../images/bar_background.png) top repeat-x;
	font-size: 12px;
	text-decoration: none;
	color: black;
}
#navbar ul.nav a.right:visited {
	border: none;
	padding: 5px 12px;
	margin: 0;
	background: url(../images/bar_background.png) top repeat-x;
	font-size: 12px;
	text-decoration: none;
	color: black;
}
#navbar ul.nav a.right:hover {
	background: url(../images/linkhover_background.png) top repeat-x;
	color: white;
}
#navbar ul.nav a.right:active {
	background: url(../images/linkhover_background.png) top repeat-x;
	color: white;
}
#mainContent {
	float: right; /* since this element is floated, a width must be given */
	width: 626px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	margin: 0 12px 0 12px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#mainContent a:link, #mainContent a:visited {
	text-decoration: none;
	color: #0A6D50;
}
a:hover, #mainContent a:active {
	text-decoration: underline;
	color: #0A6D50;
}
#mainContent p.highlight {
	background-color: #FFCC00;
	padding: 4px;
	margin: 0;
	width: 320px;
	border: 1px solid #0A6D50;
}
h1 {
	font-size: 200%;
	color: #0A6D50;
}
h2 {
	font-size: 125%;
	color: #333333;
}
#callout {
	margin: 24px 0 0 12px;
	padding: 0 6px 6px 12px;
	background: #FFFE80;
	border: 1px solid #FFCC00;
	width: 266px;
	float: right;
}
#callout h3 {
	font-size: 18px;
	color: #333333;
}
#callout p {
	font-size: 14px;
	color: #0A6D50;
}
#callout img {
	margin: 0 9px 0 3px;
}
#leftcolumn {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0 0 0 12px;
	width: 120px;
	border: none;
	border-right: 2px solid #FFFE80;
	background: #FFFFFF;
}
#footer {
	padding: 0 12px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #CCCCCC;
}
#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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 80%;
	color: #666666;
}
#footer a:link, #footer a:visited {
	color: #666666;
	text-decoration: none;
}
#footer a:hover, #footer a:active {
	color: #333333;
	text-decoration: underline;
}
.smaller {
	font-size: 80%;
}
.arrowyellow {
	color: #FFCC00;
	font-weight: bold;
}
.arrowgreen {
	color: #0A6D50;
	font-weight: bold;
}
.floatleft {
	float: left;
}
.floatright {
	clear: both;
	float: right;
	margin-left: 12px;
}
.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;
}
