ul#nav { /* all lists */
	width: 860px;
	padding: 0;
	margin: 0px 0px 0px 0px ;
	list-style: none;
}

ul#nav li { /* all list items */
	list-style: none;
	float: left;
	position: relative;
	font-weight:bold;
}
ul#nav li ul li { 
	float: none;
}
ul#nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

ul#nav li:hover ul, ul#nav li.over ul { /* lists nested under hovered list items */
	display: block;

}

ul#nav li a, ul#nav li a:visited {
	text-decoration: none;
	display: block;
	color:#666666;
	text-align: center;
	padding: 16px 33px 15px 23px;
	font-size: 1em;
}
ul#nav li a:hover, .selected a {
	text-decoration: none;
	color: #000;

}
ul#nav li li a, ul#nav li li a:visited {
	text-align: left;
	width: 100%;
	padding: 10px 25px;
	font-size: 1em;
}
ul#nav li li a:hover {
	background-image: none !important;
}

