.ddsmoothmenu{
background: white; /*background of menu bar (default state)*/
width: 100%;
    float: left;
    display: inline;
    position:relative;
    background: url(gfx/menu-bg.png) top left;
    line-height: 0;
    margin-top: 1px;
    margin-bottom: 5px;
}

.ddsmoothmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
padding: 0; padding-left: 20px;
}

.ddsmoothmenu ul li ul { padding: 0 }

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
    display: block;
    background: transparent;
    color: black;
    padding: 0;
    text-align: center;
    height: 77px;
    line-height: 82px;
    width: 150px;
    font-size: 16px;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: 1px 1px 1px #FDEA9F;
}

.ddsmoothmenu ul li a.currenttop
{
    display: block;
    background: transparent url(gfx/topmenu-selected.png) no-repeat;
    color: #FCD332 !important;
    text-shadow: 0px 0px 0px #FDEA9F;
    padding: 0;
    text-align: center;
    text-decoration: none;
    height: 77px;
    line-height: 82px;
    width: 150px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 16px;
}

* 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: black;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    background: transparent url(gfx/topmenu-hover.png) no-repeat; /*background of menu items during onmouseover (hover state)*/
    color: #FCD332;
    text-shadow: 0px 0px 0px #FDEA9F;
}

.ddsmoothmenu ul li a:hover{
    background: transparent url(gfx/topmenu-hover.png) no-repeat; /*background of menu items during onmouseover (hover state)*/
    color: #FCD332;
    text-shadow: 0px 0px 0px #FDEA9F;
}

/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
background: #FDEA9F;
margin-top: -12px;
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: normal 13px Verdana;
    width: 200px; /*width of sub menus*/
    padding: 0px 20px;
    margin: 0;
    /* height: 20px; */
    height: 40px;
    line-height: 40px;
    background: #FDEA9F;
    text-align: left;
    color: black;
    text-shadow: 1px 1px 1px #FCD332;
}

.ddsmoothmenu ul li ul li a:link, .ddsmoothmenu ul li ul li a:visited{
    color: black;
    text-shadow: 1px 1px 1px #FDEA9F;
}

.ddsmoothmenu ul li ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    background: #24313E;
    color: #FCD332;
    text-shadow: 0px 0px 0px #FDEA9F;
}

.ddsmoothmenu ul li ul li a:hover{
    background: #24313E; /*background of menu items during onmouseover (hover state)*/
    color: #FCD332;
    text-shadow: 0px 0px 0px #FDEA9F;
}


/* 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: 22px;
right: 15px;
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: silver;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}


