/* 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;
padding: 0;
z-index:100;
}

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

/* style all the links */
#nav a, #nav :visited {
display:block;
font-size:11px;
color:#fff;
text-decoration:none;
}
#nav ul.tier_1 a, #nav ul.tier_1 :visited {
	padding:14px 0 14px 27px;
	}
/* style the links hover */
#nav :hover{
color:#fff;
background: transparent;
}
#nav ul ul.tier_2 li :hover{
background-color: #622613;
background-image: none;
}
/* hide the sub level links */
#nav ul ul {
visibility:hidden;
position:absolute;
margin-left: 25px;
width: 205px;
height:0;
}
#nav ul ul.tier_2 li a, #nav ul.tier_2 li :visited {
padding: 5px;
width: 195px;
background:#4b1d0f;
border-bottom: 1px solid #7d271a;
}
/* make the sub level visible on hover list or link */
#nav ul li:hover ul,
#nav ul a:hover ul{
visibility:visible;
}