body { 
font-family: Verdana;
font-size:10px;
}
	
A:link {font-family: Verdana; color:#993300; text-decoration:none}
A:visited {font-family: Verdana; color:#993300; text-decoration:none}
A:active {font-family: Verdana; color: #FF0000; text-decoration:none}
A:hover {font-family: Verdana; color:#006600; text-decoration:none}


p.smalltext{
font-size:11px;	
}

/* ===================Form */
fieldset{
border: none;
}
label{
font-weight:bold;
}
input, textarea{

}

/*set focus on form fields*/
input:focus, select:focus, textarea:focus {background-color:#FFE6D2;}
legend {color:#EF7227; margin-bottom:.2em;}


.leftbox{
padding: 1em;
width: 160;
}

.footer{
border: 1px solid #CCCCCC;
background: #F4F4F4;
height: 20;
padding: 2px;
font-size:11px;
}

/*========================Menu*/

#nav, #nav ul { /* all lists */
	padding: 2px;
	margin: 0;
	list-style: none;
	line-height: 1;
	display: inline;
	list-style-type: none;
	font-weight: bold;
	font-size:16px;
	
	
}

#nav a {
	display: block;
	width: 10em;
	padding: 3px 10px;
	text-decoration: none;
}

#nav li a:link, #nav li a:visited {
	color: #fff;
	background-color: #183A54;
	text-decoration: none;
}

#nav li a:hover
{
color: #fff;
background-color: #216496;
text-decoration: none;
}

#nav li ul a:link, #nav li ul a:visited { /*drop down*/
	color: #000000;
	background-color: #ffffff;
	text-decoration: none;
	width: 14em;
}

#nav li ul a:hover /*drop down*/
{
background-color: #F3F3F3;
color: #990000;
}



#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	border: 1px solid #FFFFFF;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #FFFFFF;
	width: 15em;
	padding: 2px 10px;
	font-weight: normal;
	font-size: 15px;
	border: 1px solid #183A54;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#999999,direction=135,strength=6); /*Add Shadow in IE.*/
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}


#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}