ul#nav { /* all lists */
	position:relative;
	z-index:9;
	padding:0;
	margin:0;
	list-style:none;
	float:right;
}

ul#nav li { /* all list items */
	float:left;
	position:relative;
	text-align:left;
	margin-right:15px;
	font-family:Tahoma;
	cursor:pointer;
	cursor:hand;
}

ul#nav li ul { /* second-level lists */
	display:none;
	position:absolute;
	top:21px;
	left:-10px;
	padding:5px;
	margin:0;
	list-style: none;
	background:#FFF;
	border:1px solid #B1BFC7;
	z-index:99999;
}


* HTML 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 */
	white-space:nowrap;
	width:1px;
}
ul#nav li ul li {
	white-space:nowrap;
	font-family:Arial;
	font-weight:normal;
}


ul#nav li:hover ul,ul#nav li.over ul { /* lists nested under hovered list items */
	display: block;
}
