.ddsmoothmenu{
font-family : Arial, Helvetica, sans-serif;
font-size : 8pt;
font-style : normal;
font-weight : bold;
color : #fff;
text-decoration : none;
background: transparent; /*background of menu bar (default state)*/
width: 100%;
}
.ddsmoothmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}
.ddsmoothmenu ul li{ /*Top level list items*/
position: relative;
display: inline;
float: left;
width:auto;
}
.ddsmoothmenu ul li a{ /*Top level menu link items style*/
display: block;
color: white;
padding-left: 8px;
padding-right:8px;
padding-top:2px;
padding-bottom:1px;
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: #fff;
}
.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #ad0600; 
color: #3fa93a;
}
.ddsmoothmenu ul li a:hover{
background: #ad0600; /*background of menu items during onmouseover (hover state)*/
color: #3fa93a;
}
.ddsmoothmenu ul li ul{ /*1st sub level menu*/
position: absolute;
background-color:#ad0600;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}
.ddsmoothmenu ul li ul li{ /*Sub level menu list items (undo style from Top level List Items)*/
display: list-item;
float: none;
width:auto;
}
.ddsmoothmenu ul li ul li ul{ /*All subsequent sub menu levels vertical offset after 1st level sub menu */
top: 0;
}
.ddsmoothmenu ul li ul li a{ /* Sub level menu links style */
font-family : Arial, Helvetica, sans-serif;
font-size : 8pt;
font-style : normal;
font-weight : bold;
color : #fff;
text-indent:4px;
width: 160px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid gray;
}
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/
/* ######### 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: silver;
}
.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}