.vertical-horizontal-menu ul{
margin: 0;
padding: 0;
width: 100%; /* Main Menu Item widths */
list-style-type: none;
font: bold 11px Verdana;
/*border-right: 1px solid #AAA;*/
/*border-bottom: 1px solid #888;*/
}
 
.vertical-horizontal-menu ul li{
position: relative;
}

/* Top level menu links style */
.vertical-horizontal-menu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
text-decoration: none;
padding: 6px;
/*border-bottom: 1px solid #778;*/
/*border-right: 1px solid #778;*/
}

.vertical-horizontal-menu ul li a:link, .vertical-horizontal-menu ul li a:visited, .vertical-horizontal-menu ul li a:active{
/*background: #414141; */ /*background of menu items (default state)*/
color: black;
}


.vertical-horizontal-menu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #e2e2e2; 
color: black;
}

.vertical-horizontal-menu ul li a:hover{
background: #e2e2e2; /*background of menu items during onmouseover (hover state)*/
color: black;
}

/*Sub level menu items */
.vertical-horizontal-menu ul li ul{
position: absolute;
width: 170px; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
border: 1px solid #e2e2e2; 
background: #f8f8f8;
margin-left: -150px;
margin-top: 20px;
}

 
/* Holly Hack for IE \*/
* html .vertical-horizontal-menu ul li { float: left; height: 1%; }
* html .vertical-horizontal-menu ul li a { height: 1%; }
/* End */