.menu {
width:980px;
position:relative;
}

.menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	list-style-position: inside;
}

.menu li { /* all list items */
	float:left;
	position:relative;
	font: bold 15px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	width: 180px;
	height: 20px;
}

.menu li.top {
	margin-right: 10px;
}

.menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 20px;
	left: 0;
	background:#999999;
}

.menu 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;
}

.menu li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

.menu ul li a {
	display:block;
	text-decoration:none;
	color:#000;
	width:180px;
	height:20px;
	color:#FFFFFF;
	background:transparent;
	padding: 5px 5px;
}

* html .menu ul li a {
width:180px;

}

.menu ul li ul li a {
display:block; 
background:#999999; 
color:#FFFFFF; 
height:auto; 
padding:5px 5px; 
width:180px;
font: normal 13px Arial, Helvetica, sans-serif;
}

.menu ul li:hover ul li a:hover,
.menu a:hover {
background:#D3A32C; 
color:#000;
text-decoration: none;
}
