.ddsmoothmenu{
	font: bold 12px Verdana;
	color: #fff;
	background: none; /*background of menu bar (default state)*/
}

/* complete menu and boxes around dropdowns */
.ddsmoothmenu ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/* Menu titles and menu items*/
.ddsmoothmenu ul li{
	position: relative;
	display: inline;
	float: left;
	font-weight:bold;
}

/* eleemnt between menu headers */
.ddsmoothmenu ul li.menu_seperator{
	padding: 5px 2px;
}

/* menu header boxes */
.ddsmoothmenu ul li.menu_container{
	border-bottom:#c4E3F5 4px solid;
}

/* menu header a style */
.ddsmoothmenu ul li a:link.menu_header,  .ddsmoothmenu ul li a:visited.menu_header{
	color: #0065A4;
	font-weight:bold;
	border-right:none;
	border-bottom:none;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #00afdb; 
	color: #fff;
}



.ddsmoothmenu ul li a:hover.menu_header{
	background:#00afdb;
	color: #fff;
}

/* menu titles and menu items */
/*Top level menu link items style*/
.ddsmoothmenu ul li a{
	display: block;
	padding: 10px 10px;
	text-decoration: none;
	text-align:left;
	font-weight: bold;

}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

/* all element boxes */
.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
	color: #fff;
	font-weight:bold;
}

/* over state for all boxes */
.ddsmoothmenu ul li a:hover{
	background: #fff; /*background of menu items during onmouseover (hover state)*/
	color: #0065A4;
	font-weight:bold;
}
	
/*box containing complete dropdown menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	margin-top:-4px;
}

/* menu item boxes */
/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
}

/* box containing complete submenu */
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
	top: 0;
	padding-top:4px;
}

/* menu item boxes */
/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	font: normal 12px Verdana;
	width: 140px; /*width of sub menus*/
	padding: 8px 10px;
	margin: 0;
	border-top-width: 0;
	background:#00afdb;
}

.ddsmoothmenu ul li ul li ul li a{
	background:#0094b9;
}

.ddsmoothmenu ul li ul li ul li ul li a{
	background:#006a85;
}


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 12px;
	right: 7px;
}

.rightarrowclass{
	position: absolute;
	top: 10px;
	right: 9px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
	opacity: 0.8;
}