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

/*Top level*/
.ddsmoothmenu ul li{position: relative;}

.ddsmoothmenu ul li a{display:block; background:#dfdfdf; width:189px; padding: 8px 15px; border-bottom: 1px solid #ababab; text-decoration:none; text-transform:uppercase; font-weight:bold;}

* 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;}

.ddsmoothmenu ul li a:hover.voce1, .ddsmoothmenu ul li a.voce1.selected /*CSS class that's dynamically added */ {background: #d91604; color: #fff;}
.ddsmoothmenu ul li a:hover.voce2, .ddsmoothmenu ul li a.voce2.selected /*CSS class that's dynamically added */ {background: #f96f1e; color: #fff;}
.ddsmoothmenu ul li a:hover.voce3 {background: #f2c53d; color: #fff;}
.ddsmoothmenu ul li a:hover.voce4 {background: #04cde3; color: #fff;}
	
/*Sub level */
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

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

/*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: 130px;
padding: 8px 15px;
margin: 0;
}

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