/* CSS Document */
#nav { 
	width: 700px; 
	text-align: left; 
	list-style: none; 
	line-height: 18px; 
	padding: 0; 
	margin: auto;
}
/* This *html hack is used so that IE does not add a gap on the left of the menu becuase of the margin: auto Firefox fix */
*html #nav { 
	width: 700px; 
	text-align: left; 
	list-style: none; 
	line-height: 18px; 
	padding: 0; 
	margin: 0; 
}
/* End html hack */

#nav ul { 
	float: left; 
	list-style: none; 
	line-height: 14px; 
	background: #CC6600; 
	font-weight: bold; 
	padding: 0; 
	margin: 0; 
}
/* Must use line-hieght to set height on menu items incase word wrap happens, firefox does not expand to fit height */
#nav a { 
	display: block; 
	color: #FFFFFF; 
	text-decoration: none; 
	padding: 0; 
	line-height: 18px; 
	font-size: 18px;
}
#nav li { 
	float: left; 
	padding: 0;
}
#nav li a { 
	text-align: center; 
	padding-right: 10px;
	padding-bottom: 10px;
	/*padding: 0 20px 0 20px;
	border-right: 1px solid #FFFFFF;*/ 
}

#nav li ul { 
	position: absolute; 
	left: -999em; 
	height: auto; 
	font-weight: normal; 
	margin: 0; 
	width: 120px; 
}
#nav li ul a { 
	width: 120px; 
	border-top: 1px solid #111111; 
	border-left: 1px solid #111111; 
	border-right: 1px solid #111111; 
	border-bottom: 1px solid #111111; 
	padding: 2px 8px; 
	margin: 0px; 
	background: #000000; 
	text-align:left;
	font-weight: normal; 
	font-size: 16px;
}
#nav li ul ul { 
	margin: -1.0em 0 0 110px; 
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul { 
	left: -999em; 
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { 
	left: auto; 
}
#nav li:hover, #nav li.sfhover { 
	color: white; 
}
#nav li ul li a:hover, #nav li ul li a.sfhover { 
	color: #FFFFFF; 
	text-decoration: underline;
	background-color:#222222;
}
#nav li ul li a.menudropdown { 

}



