
.ddsmoothmenuGreen{
	font: bold 10pt Georgia;
	width: 100%;
	background: #5bb100; background of menu bar (default state)*/

}

.ddsmoothmenuGreen ul{
z-index:100;
margin: 0;
padding: 8px; /*this changes the height of the words in the tabs*/
list-style-type: none;
text-align: left;
}

/*Top level list items*/
.ddsmoothmenuGreen ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.ddsmoothmenuGreen ul li a{
display: block;
background: #5bb100; /*background of menu items (default state) was 414141*/
color: white;
padding: 0px 10px; /*top & bottom, left & right*/
border-right: 0px solid #fbf1a0;
text-decoration: none;

}

* html .ddsmoothmenuGreen ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.ddsmoothmenuGreen ul li a:link, .ddsmoothmenuGreen ul li a:visited{
color: #ffffff;
font-weight: bold;
}

.ddsmoothmenuGreen ul li a:hover{
	text-decoration: none;
	color: #bbf87a;
	font-weight: bold;
	background: #5bb100; green background of menu items during onmouseover black (hover state)*/

}
	
/*1st sub level menu*/
.ddsmoothmenuGreen ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
font-weight: bold;

}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenuGreen ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenuGreen ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.ddsmoothmenuGreen ul li ul li a{
	font: normal 10pt Georgia;
	width: 160px; /*width of sub menus*/
	padding: 5px;
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid #fbf1a0; /*grey*/
}


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 12px;
right: 7px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: transparent; /* was silver*/
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}