#nav
{
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	margin: 0px 0px 2px;
	width: 800px;
	padding-top: 0px;
	list-style-type: none;
	height: 36px;
	background-color: #666666;
}
#nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav li {
	float: left;
	position: relative;
	text-align: left;
	cursor: default;
	background-color: White;
	text-align: center;
}

#nav a {
	text-transform: uppercase;
	display: block;
	padding: 10px 15px;
	border-right: 1px solid White;
	font-weight: bold;
	background-color: #666666;
	color: White;
	text-decoration: none;
	font-size: 80%;
	height: 16px;
}

#nav a:hover
{
	color: white;
	background-color: #999999;
	text-decoration: underline;
}

#nav li ul {
	border: 1px solid #666666;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
}

#nav li li {
	text-align: left;
}

#nav li li a {
	text-transform: none;
	padding: 5px 5px;
	border-bottom: 1px dotted #666666;
	font-weight: bold;
	background-color: White;
	color: #666666;
	text-decoration: none;
	font-size: 80%;
	width: 120px;
	height: auto;
}

#nav li li a:hover
{
	color: white;
	background-color: #999999;
}

#nav li>ul {
	top: auto;
	left: 0;
}

#nav li:hover ul, li.over ul {
	display: block;
}
