.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
width: 160px; /* Main Menu Item widths */
list-style-type: none;
font: bold 12px Arial;
/*border-bottom: 1px solid #ccc;*/
}
 
.ddsmoothmenu-v ul li
{
position:relative;

}

/* Top level menu links style */
.ddsmoothmenu-v ul li a
{
font: Normal 12px arial;
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: #ffffff;
font-weight:bold;
text-decoration: none;
padding: 5px;
border-bottom: 0px solid #778;
border-right: 0px solid #778;
cursor:pointer;
text-align:left;
}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
color: #ffffff;
font-weight:bold;
}

.ddsmoothmenu-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
color: #ffffff;
font-weight:bold;
}

.ddsmoothmenu-v ul li a:hover{
background: #f14932; /*background of menu items during onmouseover (hover state)*/
color: #ffffff; 
font-weight:bold;
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul
{
background-color:#f59c4a;
color:red;
position: absolute;
width: 155px; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
}

.ddsmoothmenu-v ul li ul li:hover
{
background-color:#f48a34;
}

.ddsmoothmenu-v ul li ul li a
{
color:#ffffff;
}

.ddsmoothmenu-v ul li ul li a:link
{
color:#ffffff;
}

.ddsmoothmenu-v ul li ul li a:visited
{
color:#ffffff;
}

.ddsmoothmenu-v ul li ul li a:hover
{
color:#554335;
}



/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* End */