.ddsmoothmenu-v ul{
margin: 6px 10px;
padding: 0;
/*width: 170px; /* Main Menu Item widths */
list-style-type: none;
position: relative;
z-index:1000;
}
 
.ddsmoothmenu-v ul li{
position: relative;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
display: block;
margin-bottom:3px;
overflow: auto; /*force hasLayout in IE7 */
color: #222;
text-decoration: none;
padding: 1px 6px;
border-left: 6px solid #aaa;
line-height:20px;
min-height:20px;
}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
color: #222;
}


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

.ddsmoothmenu-v ul li a:hover{
background: #d5d5d5; /*background of menu items during onmouseover (hover state)*/
color: #000;
border-left: 6px solid #aaa;
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
position: absolute;
width: 230px; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
background:#F9F9F9;
}
.ddsmoothmenu-v ul li ul li a{
	background:#eee;
}
.ddsmoothmenu-v ul li ul li a,.ddsmoothmenu-v ul li ul li a:hover{
border-left: 0px solid #e93131;
margin:0px;
}
 
/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* End */