.ddsmoothmenu{
  
    position: relative;
    
}

.menu .ddsmoothmenu ul{
    z-index:100;

}
/*Top level list items*/
.ddsmoothmenu >ul >li{
    position: relative;
    display: inline;
 
    transition: 0.5s all ease 0.5s;
 
}


* 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*/

}

.ddsmoothmenu ul li a:hover{	
    color: red;
    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:250px;
      top: 34px !important;
    padding-left:0px;
    /*    background: rgba(200,201,195,0.5);*/
    overflow: visible !important;
    text-align: left;
.    z-index: 999999999;
    background: rgba(0,0,0,0.5);
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu .ddsmoothmenu ul li ul li{
display: list-item;
    float: none;
    text-transform: capitalize;
    z-index: 999999999;
    position: relative;
    margin-right: 0px !important;
	padding: 0px;
}
.menu .ddsmoothmenu ul li ul li a:after{
	content:none
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.menu .ddsmoothmenu ul li ul li ul{
    position: absolute;
    left: 250px !important;
    display: none; 
    visibility: hidden;

    width:250px;
    top:0px!important;
    z-index: 999999999;

}

/* Sub level menu links style */
.menu .ddsmoothmenu ul li ul li a{
 padding: 10px;
    margin: 0;
    text-transform: none;
    display: block;
    font-size: 15px;
   
    color: white !important;
    font-weight: normal

}
.menu ul li a:hover{
color: #fffdbb;
    text-decoration: none;
}
.menu ul li:first-child a.active{
}
.menu ul li a.active{
    color: red;
    text-decoration: none;
}
.menu ul li.active{
   
}

.menu ul li ul a.selected,.menu ul li ul li a:hover{	
    color: #fffdbb;
    text-decoration: 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: 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;
}
