@charset "UTF-8";
/* CSS Document */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

#nav a {
	display: block;
	/*width: 13em;*/
}

#nav li { /* all list items */
	/*float: left;*/
	/*width: 13em;*/
	position:relative;
}
#nav ul { /* all list items */
	width: 19em;
}

#nav li ul { /* second-level lists */
	position: absolute;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	background-color: #FFFFFF;
	opacity: 0.9;
	filter: alpha(opacity:90);
	padding: 5px;
	padding-left: 10px;
	line-height: 2;
	border-width: 1px;
	border-style: solid;
	border-color: #cccccc;
	width: 19em;
	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: 251px;
	top: 0px;
}
.navlink {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	background-color: #FFFFFF;
	opacity: 0.9;
	filter: alpha(opacity:90);
	padding: 7px;
	padding-left: 12px;
	border: 1px;
	border-style: solid;
	border-color: #993312;
}
a.link {
	color: #333333;
	text-decoration: none;
}
a.link:hover {
	color: #993312;
	font-weight: bold;
	text-decoration: none;
}
a.link:visited {
	color: #333333;
	text-decoration: none;
}
a.link:visited:hover {
	color: #993312;
	font-weight: bold;
	text-decoration: none;
}

