.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
width: 200px; /* Main Menu Item widths */
list-style-type: none;
font-size: 11px;
font-weight:bold;
text-align:center;
font-family:Arial, Helvetica, sans-serif;
}
 
.ddsmoothmenu-v ul li{
position: relative;
width:200px;
text-align:center;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color:#1d8b28;
width:200px;
text-align:center;
text-decoration: none;
padding: 20px;
border-bottom: 1px solid #02660c;
border-right: 1px solid #02660c;
}

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


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

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

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
position: absolute;
width: 200px; /*Sub Menu Items width */
top: 0;
text-align:center;
visibility: hidden;
}

