.ddsmoothmenu{
	font: Bold 12px Verdana; /*background of menu bar (default state)*/
	text-transform: uppercase;
	width:100%;
	height:8px;
	float: right;
	position: relative;
	margin-top:-65px;
	
}

.ddsmoothmenu ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
	
}

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
float: right;

}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display: block;
background: url(images/button_bg.png) repeat-x; /*background of menu items (default state)*/
color: white;
padding: 8px 10px;

color: #2d2b2b;
text-decoration: none;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline;
background: url(images/button_bg.png) repeat-x;
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
color: #666666;
}

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


.ddsmoothmenu ul li a.active {
	font-size:14px;
	color: #000000;
}
.ddsmoothmenu ul li a.active:hover {
	font-size:14px;
	color: #0066FF;
}

.ddsmoothmenu ul li a:hover{
	background: repeat-x; /*background of menu items during onmouseover (hover state)*/
	color: #FFFFFF;
}

	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: inline; /*collapse all sub menus to begin with*/
	visibility: hidden;
	background: url(images/button_bg_o.jpg);	
}



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

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	font: normal 13px Verdana;
	width: 110px; /*width of sub menus*/
	padding: 5px;
	border-bottom: 1px solid gray;
	text-align: center;
	background-color: #999999;	
}


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


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

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

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