.ddsmoothmenu{
	font: normal 10px; /*background of menu bar (default state)*/
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	border-bottom:1px solid #C0C0C0;
}

.ddsmoothmenu ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 140px;
	margin-right:2px;
	_margin-right:0px;
}

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: block;
/*float: left;*/
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
	top:1px;
	left: 1px;
	
	_width: 100%;
	display: block; /*background of menu items (default state)*/
	color: #000000;
	background-color:#F8F8F9;
	border:1px solid #C0C0C0;
	border-bottom:0;
	font-size:10px;
	padding:1px;
	text-decoration: none;
}

.ddsmoothmenu ul li a:hover {
	text-decoration: none;
}

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

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

.ddsmoothmenu ul li a:hover{
background: #276532; /*background of menu items during onmouseover (hover state)*/
color: #FFFFFF;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
width: 156px;
_width: 150px;
left: 123px;
top: -26px;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
border-bottom:1px solid #C0C0C0;
}

/*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{
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	width: 150px; /*width of sub menus*/

	top:1px;
	left: 1px;
	display: block; /*background of menu items (default state)*/
	color: #000000;
	background-color:#F8F8F9;
	font-size:10px;
	padding:2px;
	text-decoration: none;
}

.ddsmoothmenu ul li ul li a{
	text-decoration: none;
}


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

.downarrowclass{
position: absolute;
top: 2px;
right: 3px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

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

.ddshadow{
position: absolute;
left: 0;
top: 0;
display:none;
background: silver;
opacity: 0.8;
}

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