.ddsmoothmenu{
    margin:0 auto;
    float: right;
    width: 75%;
}
.menu .ddsmoothmenu ul{
    z-index:100;
}
/*Top level list items*/
.menu .ddsmoothmenu ul li{
    position: relative;
    float: left;
    background: url(../images/line_menu.png) no-repeat right 1px center;
}
.menu .ddsmoothmenu ul li:last-child{background:none;}
/*Top level menu link items style*/
.ddsmoothmenu ul li a
{
    line-height: 50px;
    display: block;
    padding: 0px 28px;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-family: RobotoBold;
}
.ddsmoothmenu ul li span{
}
* 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{
}
.menu .ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: url(../images/hover_menu.jpg) repeat-x;
}
.ddsmoothmenu ul li a:hover{
    background: url(../images/hover_menu.jpg) repeat-x;
    text-decoration: none;
}
.ddsmoothmenu ul li:hover{  
}
/*1st sub level menu*/
.menu .ddsmoothmenu ul li ul{
    position: absolute;
    left: 0px !important;
    display: none; /*collapse all sub menus to begin with*/
    visibility: hidden;
    width: 218px !important;
    top:30px;
    padding-left:0px;
    background: url(../images/menu.jpg) no-repeat;
    background-size: 100% 100%;
    overflow: visible !important;
    text-align: left;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.menu .ddsmoothmenu ul li ul li{
    display: list-item;
    float: none;
    height:auto;
    text-transform: capitalize;
    background: none;
    border-bottom: 1px solid #af070e;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.menu .ddsmoothmenu ul li ul li ul{
    position: absolute;
    left:217px !important;
    display: none; 
    visibility: hidden;
    width:180px;
    top:0px;
    padding-left:0px;
}
/* Sub level menu links style */
.menu .ddsmoothmenu ul li ul li a{
    margin: 0;
    text-transform: none;
    line-height: normal;
    padding: 7px 0px 7px 8px;
    height: auto;
    display: block;
    font-size: 15px;
    color: white;
}
.menu ul li a:hover{
}
.menu ul li a.active:first-child{
    background: url(../images/hover_menu.jpg) repeat-x;
}
.menu ul li a.active{
    background: url(../images/hover_menu.jpg) repeat-x;
}
.menu ul li.active{
}
.menu ul li ul a.selected,.menu ul li ul li a:hover{
    background: url(../images/hover_menu.jpg) repeat-x;
}
/* 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: 12px;
    right: 7px;
    display:none;
}
.rightarrowclass{
    position: absolute;
    top: 10px;
    right: 5px;
}
/* ######### 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: silver;
}
.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
    opacity: 0.8;
}