@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0px; /* 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;
}
.oneColFixCtrHdr #container {
	width: 951px;  /* 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 */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #DDDDDD;
	border: 0px; 
	margin: 0px;
	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. */
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	border: 0px; 
	margin: 0;
}
.oneColFixCtrHdr #footer {
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: white;
	border: 0px;
	margin: 10px 0 0 30px;
}
.oneColFixCtrHdr #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 */
	font-size: 80%;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #666;
}

.oneColFixCtrHdr #footer a {
	font-size: 80%;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #036;
	padding: 0px;
	}
	#footer a:link,
	#footer a:visited,
	#footer a:active
	#footer a:hover,
		{
		color: #036;
		text-decoration: underline;
		  }
		  
.content {
	margin: 20px 10px 10px 30px;
	font-size: 80%;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-color: #333;
	line-height: 140%;
	color: #333333;
	}

.content a{
	font-size: 80%;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #630;
	}
	content a:link,
	content a:visited,
	content a:active,
	content a:hover
		{
		color: #630;
		text-decoration: underline;
		  }
	
.content table{
	font-size: 80%;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #333;
	line-height: 100%;
	padding: 5px 0;
	}

h1 {
	font-size: 110%;
	font-weight: 100;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #036;
	}

#mainNav {
	padding: 3px 0 5px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 3px;
	position: absolute;
	top: 137px;
}
#mainNav a {
	font-size: 80%;
	font-weight: 100;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	}
	#mainNav a:link,
	#mainNav a:visited,
	#mainNav a:active
		{
		color: white;
		  }
	#mainNav a:hover{
		color: #fc3;
		  }
	
#home {
	padding: 3px;
}

#home a {
	font-size: 80%;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
	margin: 3px 0 3px 30px;
	text-decoration: none;
	}
	#home a:link,
	#home a:visited,
	#home a:active
		{
		color: #666;
		  }
	#home a:hover{
		color: #333;
		  }
	
	
	
	
	
	
	/* Drop Down */ 
	
	
#mainNav, #mainNav ul {
	list-style: none;
}

#mainNav a {
	display: inline;
}

#mainNav li {
	float: left;
}

#mainNav li ul {
	position: absolute;
	left: -999em;
}


	#mainNav li ul  a:link,
	#mainNav li ul  a:visited,
	#mainNav li ul  a:active
		{
		font-size: 60%;
		color: #333;
		  }
	#mainNav li ul  a:hover{
		color: #036;
		font-size: 60%;
		  }





#mainNav li:hover ul {
	left: auto;
}


#mainNav li:hover ul, #nav li.sfhover ul {
	left: auto;
}

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
