.ddsmoothmenu-v ul{
margin: 0;
padding: 0px;
width: 210px; /* Main Menu Item widths */
list-style-type: none;
font: 12px Verdana;
border-bottom: 0px solid #b2c5d3;
}

.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: white;
	text-decoration: none;
	border-bottom: 1px solid #b2c5d3;
	border-right: 0px solid #778;
	padding : 5px;
}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active {
	background: white;
	/*background of menu items (default state)*/
	color: #006794;
}

.ddsmoothmenu-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #f4fbfc;
color: #006794;
}

.ddsmoothmenu-v ul li a:hover{
	background: #f4fbfc;
	/*background of menu items during onmouseover (hover state)*/
	color: #0086bd;
	
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
	position: absolute;
	width: 165px;	/*Sub Menu Items width */
	padding-left: 0px;
	list-style-type: none;
	/*font-size: 12px;
	font-family: Verdana;
	*/
	border-top: 0px solid #b2c5d3;
	border-right: 1px solid #b2c5d3;
}

.ddsmoothmenu-v ul li ul.topmargin1{
	margin-top : -128px; /* defines by how much the second level menu moves up */
}

.ddsmoothmenu-v ul li ul.topmargin2{
	margin-top : -200px; /* defines by how much the second level menu moves up */
}

.rightarrowclass{
position: absolute;
top: 5px;
right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: #f4fbfc;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.6;
}
/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li{
	position: relative;
	float: left;
	height: 1%;
}

* html .ddsmoothmenu-v ul ul {
	position: absolute;
	top: 0px;
	left: -999em;
}

* html .ddsmoothmenu-v ul li a{
	height: 1%;
	display: block;
}

/* End */