.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
width: 200px; /* Main Menu Item widths */
list-style-type: none;

}
 
.ddsmoothmenu-v ul li{
position: relative;
float: left;
width:200px;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
display: block;

color: #3E3E3E;
background: url(../images/line-dm.png) no-repeat ;
text-decoration: none;
padding: 10px;
font-size:13px !important;
 color: #00A651;
text-transform: uppercase;
font-weight: bold;
}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
color: #00A651;
font-size: 13px;

}


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

color: red;

border-radius:5px;
}

.ddsmoothmenu-v ul li a:hover{

color: red;

border-radius:5px;
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
    background:#1D3C7C; /*background of menu items (default state)*/
position: absolute;
width: 240px; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
border: 2px solid white;
-moz-box-shadow: 0px 0px 6px #000000;
-webkit-box-shadow: 0px 0px 6px #000000;
box-shadow: 0px 1px 4px #000000;
padding-bottom: 10px;
}
.ddsmoothmenu-v ul li ul li{
	width:240px;
	color: white !important;
}

.ddsmoothmenu-v ul li ul li a{
	width:225px;
	color: white !important;
	background: none;
	padding-left: 0px !important;
	padding-right: 0px !important;
}
.ddsmoothmenu-v ul li ul li a:hover{
	color:red !important;
}
 
/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* End */