.dummyHiddenMenu {
    visibility: hidden;
    display: none;
}

.ddsmoothmenu {
    background-image: url(../images/tbh/main_navi_bg.png); /*background of menu bar (default state)*/
    width: 1000px;
    height: 21px;
    color: #FFFFFF;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 11px;
    font-family: Verdana;
}

.ddsmoothmenu ul{
    z-index:50;
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-position: outside;
}

/*Top level list items*/
.ddsmoothmenu ul li{
    z-index:51;
    position: relative;
    display: inline;
    float: left;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
    z-index:52;
    display: block;
    background-image: url(../images/tbh/main_navi_bg.png); /*background of menu items (default state)*/
    color: white;
    height: 15px;
    width: 100px;
    padding: 3px 12px;
    color: #2d2b2b;
    text-decoration: none;
    border-left: 1px solid #c0c0c0;
    text-align: center;
}
.ddsmoothmenu ul li:first-child a{
    border-left: 0px;
}


* 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-image: url(../images/tbh/main_navi_bg_selected.png);
    color: white;
}

.ddsmoothmenu ul li a:hover{
    background-image: url(../images/tbh/main_navi_bg_selected.png); /*background of menu items during onmouseover (hover state)*/
    color: white;
}

/*1st sub level menu*/
.ddsmoothmenu ul li ul{
    position: absolute;
    left: 0px;
    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-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 11px;
    font-family: Verdana;
    width: 120px; /*width of sub menus*/
    height: 15px;
    color: #FFFFFF;
    padding: 6px 10px;
    margin: 0;
    border-top-width: 0;
    border-bottom: 0px solid gray;
    border-left: 0px;
    border-left: 1px solid #c0c0c0;
    background-image: url(../images/tbh/main_navi_bg_transparent.png);
    text-align: left;
}
.ddsmoothmenu ul li:first-child ul li a{
    border-left: 0px;
}
.ddsmoothmenu ul li:first-child ul li:first-child a{
    border-left: 0px;
}
.ddsmoothmenu ul li ul li:first-child a{
    border-left: 1px solid #c0c0c0;
}
.ddsmoothmenu ul li ul li a:hover{
    background-image: url(../images/tbh/main_navi_bg_selected_transparent.png); /*background of menu items during onmouseover (hover state)*/
}
/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


