#menu{
	height: 30px;
	padding-top: 52px;
	float: left;
	font-size: 15px;
}
.ddsmoothmenu ul{
z-index:100;
list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu ul li{
	position: relative;
	display: inline;
	float: left;
	margin: 0 20px;
	text-transform: uppercase;
}

/*Top level menu link items style*/
.ddsmoothmenu ul{
display: block;
color: white;
padding-top: 4px;
padding-bottom:1px;
padding-left:0px;
padding-right:0px;
margin-bottom:1px;
color: #2d2b2b;
text-decoration: none;
}

.ddsmoothmenu ul li a{
display: inline-block;
padding: 8px 0px 0px 0px;
margin-bottom:22px;
color: #fff;
}


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

.ddsmoothmenu ul li a:hover{
color:#a59dc6;
border-bottom: thin dashed #FFF;
}
	
/*SOTTO MENU*/

.ddsmoothmenu ul li ul{
	background-image:url(images/sottomenu.png);
	text-align:left;
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	top: 33px !important;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
	border-bottom: thin #CCC solid;
	margin: 0;
}

.ddsmoothmenu ul li ul li a{
	color:#4e4d54;
	border:none;	
}
.ddsmoothmenu ul li ul li a:hover{
	color:#343fa2;
	background-image:url(images/sottomenu.png);
	background-repeat:repeat;
	border:none;	
}


/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
width: 160px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
/*border-bottom: 1px solid gray;*/
}

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