.ddsmoothmenu
{
    background: transparent; /*background of menu bar (default state)*/
    width: 100%;
    position: relative;
}

.ddsmoothmenu ul
{
    z-index:100;
    margin: 0;
    padding: 0;
    list-style-type: none;
    padding: 0;
    position: absolute;
    top: -14px; left: 0;
}

.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 url(../gfx/menu-bg.png) no-repeat; /*background of menu items (default state)*/
    color: #01517F;
    text-shadow: 0px 1px 1px white;
    padding: 0;
    text-align: center;
    text-decoration: none;
    height: 45px;
    line-height: 15px;
    width: 120px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 15px;
}

.ddsmoothmenu ul li a span
{
    display: block;
    padding-top: 7px;
}

.ddsmoothmenu ul li a span.tnorm
{
    display: block;
    padding-top: 14px;
}

.ddsmoothmenu ul li a.currenttop
{
    display: block;
    background: transparent url(../gfx/menu-current-bg.png) no-repeat !important; /*background of menu items (default state)*/
    color: white !important;
    padding: 0;
    text-align: center;
    text-decoration: none;
    height: 45px;
    line-height: 15px;
    width: 120px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 15px;
    text-shadow: 1px 1px 1px #05688D !important;
}

* 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: #01517F;
}

.ddsmoothmenu ul li a.selected
{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    background: transparent url(../gfx/menu-selected-bg.png) repeat-x;
    color: #E08014;
    text-shadow: 0px 1px 1px white;
}

.ddsmoothmenu ul li a:hover
{
    background: transparent url(../gfx/menu-selected-bg.png) no-repeat; /*background of menu items during onmouseover (hover state)*/
    color: #458800;
    text-shadow: 0px 1px 1px white;
}

/*1st sub level menu*/
.ddsmoothmenu ul li ul
{
    position: absolute;
    left: 0;
    display: none; /*collapse all sub menus to begin with*/
    visibility: hidden;
    background: none;
    margin-top: 4px;
}

/*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-family: Georgia, "Times New Roman", Times, serif;
    width: 200px; /*width of sub menus*/
    padding: 7px 20px;
    margin: 0;
    height: 20px;
    line-height: 20px;
    background: #EAE9C8;
    text-align: left;
}

.ddsmoothmenu ul li ul li a:link, .ddsmoothmenu ul li ul li a:visited
{
    color: #555;
    text-shadow: none;
}

.ddsmoothmenu ul li ul li a.selected
{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    background: url(../gfx/submenu-selected-bg.png) repeat-x;
    color: white;
    text-shadow: none;
}

.ddsmoothmenu ul li ul li a:hover
{
    background: #7DB136 url(../gfx/submenu-current-bg.png) repeat-x; /*background of menu items during onmouseover (hover state)*/
    color: white;
    text-shadow: none;
}


/* 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: 10px;
}

.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;
}

.currenttop img
{
    display: none;
}

