#dropdown {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #73705D;
}

#dropdown a {
	color: #73705D;
	text-decoration: none;
	padding-right: 12px;
	padding-left: 12px;
	font-weight: bold;
  }
#dropdown a:hover {
	color: #EEEDDE;
	background-color: #D6D5BB;
	padding-right: 12px;
	padding-left: 12px;
  }  

#dropdown ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	z-index:2000;
}

#dropdown li { /* all list items */
	float: left;
	position: relative;
	width: auto;
}

#dropdown li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

#dropdown 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;
}

#dropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	background-color: #D6D5BB;
}

#content {
	clear: left;
}
