<style type="text/css">
  #info {height:400px;}


.menu {
z-index:1000;
font-size:90%;
height:235px;
margin:0px 0px 0px 0px; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:150px;
height:182px;
position:relative;

}

.menu li {
background:#eee;
height:26px;
}

* html .menu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.menu li {
position:relative;
background:#eee;
height:26px;
}

/* get rid of the table */
.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 {
font-family: verdana;
font-size:8pt;
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:230px;
color:#000;
text-indent:5px;
border-bottom:1px solid #ccc;
border:1px solid #ccc;
border-width:1px 1px 1px 1px;
background:#eee;
}

/* style the link hover */
* html .menu a:hover {color:#fff; background:#999;}

.menu :hover > a {
color:#000; 
background:#DEDEDE;
}

/* 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:-0px;
left:230px;
}

/* 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:235px;
}
  </style>