.ddsmoothmenu-v ul{
    margin: 0;
    padding: 0;
    /*width: 170px;  Main Menu Item widths */
    list-style-type: none;
    font: bold 12px Verdana;
    border: 3px solid #bd0b02;

    padding: 5px;
    background: #d70101;
}
.ddsmoothmenu-v h3{
    background: url("../images/bacgroundMenuTop.png") repeat-x scroll 0 0 transparent;
    height: 30px;

    line-height: 30px;
    padding-left: 10px;
}
.ddsmoothmenu-v h3 span{
    background: url("../images/iconMenuProductLeft.png") no-repeat scroll left center transparent;
    padding-left: 30px;
    text-transform: uppercase;
    color: white;
}
.ddsmoothmenu-v ul li{
    position: relative;
    background: url("../images/iconMenuLeft.png") no-repeat scroll left top 13px transparent
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
    display: block;
    overflow: auto; /*force hasLayout in IE7 */
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-bottom: 1px dotted #fff;
}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
    /*background: #EEFDF8; background of menu items (default state)*/
    color: #fcffff;
}


.ddsmoothmenu-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    /*background: #EEFDF8; */
    color: #02291C;
}

.ddsmoothmenu-v ul li a:hover{
    /*background: #EEFDF8; background of menu items during onmouseover (hover state)*/
    color: yellow;
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
    position: absolute;
    width: 170px; /*Sub Menu Items width */
    top: 0;
    font-weight: normal;
    visibility: hidden;
    border: none;
    border-left: 1px solid #cccccc;
    border-radius: 0;
}


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