.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
width: 186px; /* Main Menu Item widths */
list-style-type: none;
font: bold 11px Verdana;
}
 
.ddsmoothmenu-v ul li{
position: relative;
margin: 0;
padding: 0;
}


/* Top level menu links style */
.ddsmoothmenu-v ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
text-decoration: none;
margin: 0;
padding:6px 0 0 5px;
}
.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
background: url(../images/left-nav.gif) repeat; /*background of menu items (default state)*/
color: white;
height:25px;
margin: 0;

}

.ddsmoothmenu-v ul li a:hover{
background: url(../images/left-nav.gif) repeat;  /*background of menu items during onmouseover (hover state)*/
color: #212121;
}

.ddsmoothmenu-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: url(../images/left-nav.gif) repeat;
color: #212121;

}
/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
position: absolute;
width: 180px; /*Sub Menu Items width */
margin: 0;
font-weight: normal;
visibility: hidden;
padding: 0;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu-v ul li ul li{
display: list-item;
float: none;
}

/*Sub level menu links style */
.ddsmoothmenu-v ul li ul li a{
font: normal 11px Verdana;
width: 180px; /*width of sub menus*/
}


 
/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* End */