/* CSS Document */

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	float: right;
}
#nav a {
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #CCCCCC;
	text-decoration: none;
	text-align: left;
	background-color: #444444;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 4px;
	padding-bottom: 3px;
	width: auto;
	display: block;
	height: auto;
}
#nav a:hover {
	color: #0066CC;
	text-decoration: underline;
}
#nav li {
	float: left;
	display: block;
}
#nav li ul {
	position: absolute ;
	width: 120px;
	left: -999em;
}
#nav li:hover ul {
	left: auto;
}
#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}
.dropdown {
	width: 120px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}