.menu {
position:absolute;
z-index:10;
top:120px;
left:30px;
color:#5A3D1C;
font-size:11px;
font-weight:900;
height:131px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
z-index:10;
padding:0;
margin:0;
width:150px;
height:131px;
position:relative;
list-style: none;
text-transform: uppercase;
}
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em; width:0; height:0;}
/* style the links */
.menu a, .menu a:visited {
z-index:10;
display:block; 
text-decoration:none;
height:21px;
line-height:21px;
width:150px;
color:#5A3D1C;
border-bottom:1px solid #e7d8b1;
}
.menu ul ul a, .menu ul ul a:visited{
border-bottom:0px;
text-transform: none;
}
.menu ul .no a, .menu ul .no a:visited{
border-bottom:0px;
}
/* style the link hover */
.menu :hover > a {
text-decoration:none;
}
.menu ul ul :hover > a {
text-decoration:none;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:25px;
left:150px;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
visibility:visible;
height:131px;
}