ul#nav, #nav ul { /* all lists */
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	list-style: none;
}
#nav li { /* all list items */
	float: left;
	position: relative;
	width: 140px;
	height: 48px;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}
#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 2px;
	left: 4px;
	border-top: 1px solid #818A94;
	border-left: 1px solid #818A94;
}
*html #nav li ul {
	top: 48px;
}
#nav li ul li {
	width: 140px;
	height: auto;
	background-color: #A6B4C3;
	font-size: 10px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: white;
	border-bottom: 1px solid #818A94;
	border-right: 1px solid #818A94;
}
#nav li ul li a {
	display: block;
	color: white;
	text-decoration: none;
	height: auto;
	padding: 4px 4px 4px 8px;
	width: 128px;
}
#nav li ul li a:hover {
	color: white;
	text-decoration: none;
	background-color: #64A8D7;
}
* html #nav li ul li a {
	width: 140px;
}
#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;
}

#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	display: block;
}
#nav img {
	display: block;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}