#nav {
	width:auto;
	height:auto;
	float:left;
	margin: 152px 0 0 11px;
	background: #000;
}

/* remove the bullets, padding and margins from the lists */
#nav ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
#nav li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
#nav table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
#nav a, #nav :visited {
display:block;
font-size:10px;
width:auto;
padding:9px 16px 11px 16px;
color:#fff;
background:#000;
text-decoration:none;
text-align:left;
}
/* style the links hover */
#nav :hover{
color:#fff;
background:#666;
}

/* hide the sub level links */
#nav ul ul {
visibility:hidden;
position:absolute;
height:0;
width:120px;
z-index: 999;
}

/* make the sub level visible on hover list or link */
#nav ul li:hover ul,
#nav ul a:hover ul{
visibility:visible;
}

#nav ul li:hover ul li a, #nav ul li:hover ul li a:visited {
	width:120px;
	background:#464646;
	color:#fff;
	text-align: left;
	opacity: .9;
	float:left;
}

#nav ul li:hover ul li a:hover {
	width:120px;
	background: #666;
	text-align: left;
	color:#fff;
	float:left;
}


