.ddsmoothmenu{
	font: 16px Arial;
	font-weight: bold;	/* 	background: #FEFEFC; background of menu bar (default state)*/
	width: 100%;
}
.ddsmoothmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	}
/*Top level list items*/
.ddsmoothmenu ul li{
z-index:10;
position: relative;
display: inline;
float: right;
padding-left: 5px;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
	display: block;
	color: #1c6101;
	text-decoration: none;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	padding-left: 0.8em;
	padding-right: 0.8em;
	border-left: 1px #f09411 solid;
}

* 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: #1c6101;
}

.ddsmoothmenu ul li a:hover{
color: #1c6101;
}

.ddsmoothmenu #current a {
color: #1c6101;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
right: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

/*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: 12px Arial;
	width: 120px; /*F4E1BE width of sub F2E99D menus*/
	background-color: #ffffe6;
	padding: 0.2em;
	margin: 0;
	border: 1px #f4b319 solid;
	text-align: right;
}

.ddsmoothmenu ul li ul li a:hover{
background: #f4b319; /*background of menu items during onmouseover (hover state)*/
color: #FFFFE7;
}

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

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

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

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

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

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