.ddsmoothmenu{
    width: 100%;
    position: relative;
    z-index: 9999;
}

.ddsmoothmenu ul{
    z-index: 9999;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Top level list items */
.ddsmoothmenu ul li{
    position: relative;
    display: inline;
    float: left;
}

/* Top level menu links */
.ddsmoothmenu ul li a{
    display: block;
    background-image: url(../images/bgg.png);
    padding: 8px 10px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

* html .ddsmoothmenu ul li a{
    display: inline-block;
}

.ddsmoothmenu ul li a:link,
.ddsmoothmenu ul li a:visited{
    color: #fff;
}

.ddsmoothmenu ul li a.selected{
    background: black !important;
    color: white;
}

.ddsmoothmenu ul li a:hover{
    background: black;
    color: white;
}

/* ========================= */
/* SUB MENUS FIXED */
/* ========================= */

.ddsmoothmenu ul li ul{
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    visibility: visible;
    background: #333;
    min-width: 220px;
    z-index: 99999;
}

/* Only show direct child UL */
.ddsmoothmenu ul li:hover > ul{
    display: block;
}

/* Sub level list items */
.ddsmoothmenu ul li ul li{
    position: relative;
    display: block;
    float: none;
    width: 100%;
}

/* Sub level menu links */
.ddsmoothmenu ul li ul li a{
    font: normal 13px Verdana;
    width: 220px;
    padding: 8px 10px;
    margin: 0;
    background: #333;
    color: #fff;
    border-bottom: 1px solid #555;
    text-decoration: none;
    box-sizing: border-box;
}

.ddsmoothmenu ul li ul li a:hover{
    background: #444;
    color: #fff;
}

/* ========================= */
/* SECOND LEVEL SUBMENU FIX */
/* ========================= */

.ddsmoothmenu ul li ul li ul{
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    background: #333;
    min-width: 220px;
    z-index: 999999;
}

/* Show submenu on hover */
.ddsmoothmenu ul li ul li:hover > ul{
    display: block;
}

/* Holly Hack for IE */
* html .ddsmoothmenu{
    height: 1%;
}

/* Arrow classes */
.downarrowclass{
    position: absolute;
    top: 12px;
    right: 7px;
}

.rightarrowclass{
    position: absolute;
    top: 6px;
    right: 5px;
}

/* Shadow */
.ddshadow{
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
}

.toplevelshadow{
    margin: 5px 0 0 5px;
    opacity: 0.8;
}