.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
width: 240px; /* Main Menu Item widths */
list-style-type: none;
font: bold 12px Verdana;
}
 
.ddsmoothmenu-v ul li{
position: relative;
list-style:none;
	float:left;
	width:210px;
	background:url(../images/icon.png) no-repeat left;
	padding-left:18px;
	margin-left:10px;
	height:49px;
	line-height:45px;
	border-bottom:1px solid #CCC;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
font: bold 12px Arial;
color: #fa2b75;
display: block;
width: auto;
padding: 5px 0;
padding-left: 10px;
text-decoration: none;
line-height:38px;
}

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


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

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

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
position: absolute;
width: 240px; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
margin-left:15px;
}
.ddsmoothmenu-v ul li ul li{
width:240px;
height:49px;
background:#FFFFFF;
}
.ddsmoothmenu-v ul li ul li a{
height:39px;
background:#FFFFFF;
}

 
/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }

/* End */