.ddsmoothmenu{

 /*background of menu bar (default state)*/
float:left;
}

.ddsmoothmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
color:#fff;

}

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

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display:block;
text-decoration:none;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.ddsmoothmenu ul li a.active{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
}

.ddsmoothmenu ul li a:hover{
 /*background of menu items during onmouseover (hover state)*/
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
background:#000;
top:40px;

}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
display: list-item;
float: none;
padding:0px!important;
margin:0px!important;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
top: 0;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
display: list-item;
height:auto!important;
float: none;
background:none!important;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a, .ddsmoothmenu ul li ul li ul li a {
  width: 160px;/*width of sub menus*/
  float: none;
  background: #78b13f!important;
  border-bottom:1px solid #fff;
  color: #fff!important;
  border-left:0px;
  padding: 3px 10px!important;
  line-height:22px!important;
  font-size:13px!important;
  font-family:Arial, Helvetica, sans-serif!important;
  text-transform:none;
  height:auto!important;
  margin:0px!important;
  }
.ddsmoothmenu ul li ul li a:hover, .ddsmoothmenu ul li ul li ul li a:hover {color: #fff!important; background:#ff8900!important;}


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


/* ######### CSS classes applied to down and right arrow images  ######### */

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 12px;
right: 7px;
display:none;
}

.rightarrowclass{
position: absolute;
top:8px;
right: 10px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
display:none!important;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
display:none!important;
}