
.ddsmoothmenu-v ul{
	 /* Main Menu Item widths */
	margin-bottom: 10px;
	/*-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;*/
}
 
.ddsmoothmenu-v ul li{
	position: relative;
	float: none;
	z-index:70 !important;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	padding: 7px 23px 6px 5px;
}

.ddsmoothmenu-v ul li:first-child a {
	
}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
	background: #2592ff url(../img/bg-menu-vertical.png) repeat-x; /*background of menu items (default state)*/
}


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

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

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
	position: absolute;
	width: 200px; /*Sub Menu Items width */
	top: 0;
	font-weight: normal;
	visibility: hidden;
	left:199px;
}

.ddsmoothmenu-v ul li ul a:link, .ddsmoothmenu-v ul li ul a:visited, .ddsmoothmenu-v ul li ul a:active{
	background: #DDD; /*background of menu items (default state)*/
	font-weight: bold;
	color:#333;
	border-bottom:1px solid #ccc
}
.ddsmoothmenu-v ul li ul a:hover{
	color:#ff0000
}

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