.ddsmoothmenu{
font: bold 12px Tahoma;
background: none; /*background of menu bar (default state)*/
width: 100%;
margin-top:2px;
background: url(bg_topmenu.jpg) repeat-x left center;
}

.ddsmoothmenu ul{
z-index:100;
margin: 0 auto;
padding:0px 0 0 0;
list-style-type: none;
width:1000px;
height:54px;
}

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
text-align:left;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display: block;
background:none; /*background of menu items (default state)*/
color: white;
padding: 5px 25px;
text-decoration: none;
margin:8px 5px 2px 5px;
font-size:17px;
font-weight:bold;
}

* 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: white;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #23881e; 
color: white;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}

.ddsmoothmenu ul li a:hover{
background: #23881e; /*background of menu items during onmouseover (hover state)*/
color: white;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
display: block; /*collapse all sub menus to begin with*/
visibility: hidden;
height:30px;
width:170px;
}

/*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{
	display:block;
	clear:left;
font: normal 12px Tahoma;
 /*width of sub menus*/
 width:160px;
padding: 8px 10px;
margin:0px 0 0 0;
border-top-width: 0;
border-top: 0px solid #fff;
text-transform:none;
background:#23881e;
font-weight:bold;
margin:1px 0 0 5px;
}
.ddsmoothmenu ul li ul li a:hover, .ddsmoothmenu ul li ul li a.selected {color:#003300;
-webkit-border-radius:0px;
-moz-border-radius: 0px;
border-radius: 0px;}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 0px;
right: 0px;
display:none;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;display:none;
}

/* ######### CSS for shadow added to sub menus  ######### 

.ddshadow{ 
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: none;
}

.toplevelshadow{
opacity: 0;
}*/