/* How To Master CSS ~ Template Stylesheet 
 * The layout of chapter 18 is used to create the 100% height effect with
 * a header and a footer, the left and right columns are not used, 
 * The header is now placed within the wrapper instead of above.
 */
body, html {
	margin:0px;
	margin-top: 0px;
	padding:0px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	height:100%;
	font-size:90%;
	background-color: #91ADB6;
}
.bg {
    background: url(../images/background_bottom.jpg) 0% 100% no-repeat;
}

/* hack for IE6 transparent PNGs */
img { behavior: url("CSS/iepngfix.htc"); }
/* End hack */

form {
	display: inline;
}

/* commented backslash hack v2 \*/ 
html, body { 
	height:100%; 
} 
* html #wrapper { 
	height:100%; 
}
/* end hack */
li ul {
    display: none;
}
li:hover > ul {
    display: block;
}
H4 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	font-size: 14px;
}
H2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-style: normal;
	font-size: 22px;
}
H3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-style: normal;
	font-size: 16px;
}

#main_content {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#333333;
	padding: 20px 50px 20px 20px;
	text-align: left;
	line-height: 20px;
}
#contact_spg {
	padding: 30px 30px 30px 50px;
	color: #3F3D36;
	font-size: 11px;
	line-height: 16px;
}
#sub_nav_background {
	background-image: url(../images/background_sub_nav.png);
	width: 630px;
	padding: 10px 0px 10px 10px;
}


#copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 10px;
	color: #FFFFFF;
	padding: 18px 0px 10px 0px;
	text-align:center;
}
.copyright {
	
}
a{
	color: #003366;
}
a:hover{
	color: #003366;
	text-decoration: underline;
}
a:visited{
	text-decoration: none;
}