.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
width: 195px; /* Main Menu Item widths */
list-style-type: none;
font: bold 12px Verdana;
}
 
.ddsmoothmenu-v ul li{
position: relative;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: #333;
line-height:26px;
text-decoration: none;
padding: 0px 6px 0px 5px;

}

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


.ddsmoothmenu-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background:url(../themes/default/images/line.jpg) repeat-x #f7d1ce; 
color: #4b0101;

}

.ddsmoothmenu-v ul li a:hover{
background:url(../themes/default/images/line.jpg) repeat-x #f7d1ce; /*background of menu items during onmouseover (hover state)*/
color: #4b0101;

}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
position: absolute;
width: 163px; /*Sub Menu Items width */
top: 0;
margin-left:-2px;
font: bold 11px arial;
visibility: hidden;
}
.ddsmoothmenu-v ul li ul li a{
	padding-left:27px;
	background:none;
	line-height:12px;
	padding-top:5px;
	padding-bottom:5px;
}
.ddsmoothmenu-v ul li ul li a:hover{
	color: #4b0101;
	background:none;
	padding-left:27px;
	line-height:12px;
	padding-top:5px;
	padding-bottom:5px;
}
 
/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* End */