
.ddsmoothmenu{
    border-bottom:2px #333 dotted;
}
.ddsmoothmenu ul {
    z-index: 100;
    margin: 0;
    padding: 0;
    list-style-type: none;
    white-space: nowrap;
}

/*Top level list items*/
.ddsmoothmenu ul li {
    position: relative;
    display: inline;
    float: left;
    padding: 0 25px 0 25px;

}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
    display: block;

    text-decoration: none;
    border-top:1px #000 solid;
}

* 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:#000;
    line-height:40px;
    font-size:15px;
    cursor: pointer;
}

.ddsmoothmenu ul li a.selected {
    /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    color: #000;
}
.selected {
    /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    color: #000;
}
.ddsmoothmenu ul li a:hover {
    color: #0050a3;
}

/*1st sub level menu*/
.ddsmoothmenu ul li ul {
    position: absolute;
    left: 0;
    display: none; /*collapse all sub menus to begin with*/
    visibility: hidden;
background:#fff;
    border:1px #ddd solid;
    margin:0;
    padding:0;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
    display: list-item;
    float: none;
    padding:0 10px;
}

/*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 {

    width: 180px; /*width of sub menus*/
    padding: 5px 0;
    margin: 0;
    border-top-width: 0;
    border-bottom: 1px solid rgba(0,0,0,.2);
    line-height: 30px !important;
    text-align: left;
    color: #666 !important;
    font-size:13px !important;

}


.ddsmoothmenu ul li ul li a:hover{
    color: #0050a3 !important;
}
.ddsmoothmenu ul li ul li a.selected{
    color: #0050a3 !important;
}

    /* 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: 40px;
    right: 20px;
    width:0;
    height: 0;
    overflow: hidden;
}

.rightarrowclass {
    position: absolute;
    top: 13px;
    right: 10px;

}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow {
    /*shadow for NON CSS3 capable browsers*/
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background:rgba(0,0,0);
}

.toplevelshadow {
    /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
    opacity: 0.4;
}