.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
list-style-type: none;
font: bold 12px Verdana;
text-align:left;
}
 
.ddsmoothmenu-v ul li{
position: relative;
float: none;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
    display: block;
    overflow: auto;
    color: #000;
    text-decoration: none;
    padding: 6px 23px 6px 0px;
}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
background: #fff; /*background of menu items (default state)*/
color: #000;
font-weight:lighter;
font-size:12px;
}


.ddsmoothmenu-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #A10200 !important; 
color: #fff;
}

.ddsmoothmenu-v ul li a:hover{
    background: #fff;
    color: #cc0000;
    text-decoration: underline;
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
position: absolute;
width: 185px; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;

}
.ddsmoothmenu-v ul li ul li a{background-color:#A10200!important;color:#fff!important;}

.ddsmoothmenu-v ul li ul li a:hover{background-color:#fff!important;color:#000!important;}
 
/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* End */