.ddsmoothmenu-v ul {
	margin: 0;
	margin-top: 1px;
	margin-bottom: 10px;
	width: 100%; /* Main Menu Item widths */
	list-style-type: none;
	background-color: #1f7fc2;
	padding: 5px 0;
}
 
.ddsmoothmenu-v ul li {
	position: relative;
	float: none;
	font-weight: bold;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a {
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: white;
	text-decoration: none;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}

.ddsmoothmenu-v ul li a:link, 
.ddsmoothmenu-v ul li a:visited, 
.ddsmoothmenu-v ul li a:active {
	background: #1f7fc2; /*background of menu items (default state)*/
	color: white;
}


.ddsmoothmenu-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #0062a5 !important; 
	color: white;
}

.ddsmoothmenu-v ul li a:hover{
	background: #0062a5; /*background of menu items during onmouseover (hover state)*/
	color: white;
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul {
	position: absolute;
	width: 170px; /*Sub Menu Items width */
	top: 0;
	font-weight: normal;
	visibility: hidden;
	margin-left: 1px;
	padding: 5px;
	-moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.ddsmoothmenu-v ul li ul li a {
	padding-left: 5px;
}

.ddsmoothmenu-v ul li ul li ul {
	margin-left: 16px;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* End */