/* FlexMenu */

.menu { 
position:relative;
z-index:100;
font-family: Arial, Verdana;
font-size: 10px;
line-height: 14px;
font-weight: bold;

}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;

}
.menu ul ul {

}

/* 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:24px;
left:0; 
background:#999999;
}