.ddsmoothmenuv2 ul{
margin: 0;
padding: 0;
width: 140px; /* Main Menu Item widths */
list-style-type: none;
font: bold 16px Arial;
border-bottom: 0px solid #ccc;
}
 
.ddsmoothmenuv2 ul li{
position: relative;
}

/* Top level menu links style */
.ddsmoothmenuv2 ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: blue;
text-decoration: none;
padding: 5px;
border-top: 1px solid #FFFFFF;
border-bottom: 1px solid #FFFFFF;
border-right: 1px solid #FFFFFF;
border-left: 1px solid #FFFFFF;
}

.ddsmoothmenuv2 ul li a:link, .ddsmoothmenuv2 ul li a:visited, .ddsmoothmenuv2 ul li a:active{
background: white; /*background of menu items (default state)*/
color: blue;
}


.ddsmoothmenuv2 ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #DDDDDD; 
color: blue;
}

.ddsmoothmenuv2 ul li a:hover{
background: #DDDDDD; /*background of menu items during onmouseover (hover state)*/
color: blue;
}

/*Sub level menu items */
.ddsmoothmenuv2 ul li ul{
position: absolute;
width: 150px; /*Sub Menu Items width */
top: 0;
font-weight: bold;
visibility: hidden;
}

 
/* Holly Hack for IE \*/
* html .ddsmoothmenuv2 ul li { float: left; height: 1%; }
* html .ddsmoothmenuv2 ul li a { height: 1%; }
/* End */