
#jMenu {
	display:table;
	margin:0;
	padding:0
	background-color: #666666;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(102, 102, 102)), to(rgb(68, 68, 68)));
	background-image: -webkit-linear-gradient(top, rgb(102, 102, 102), rgb(68, 68, 68));
	background-image: -moz-linear-gradient(top, rgb(102, 102, 102), rgb(68, 68, 68));
	background-image: -o-linear-gradient(top, rgb(102, 102, 102), rgb(68, 68, 68));
	background-image: -ms-linear-gradient(top, rgb(102, 102, 102), rgb(68, 68, 68));
	background-image: linear-gradient(top, rgb(102, 102, 102), rgb(68, 68, 68));
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#666666', EndColorStr='#444444');
	font-family: Arial, Helvetica, sans-serif;
}

/********************/
/** premier niveau **/
/********************/
#jMenu li {
	display:table-cell;
	margin:0;
	//float:left;
}
	#jMenu li a {
	display:block;
	background-color: transparent;
	color:#fff;
	cursor:pointer;
	font-size:14px;
	line-height:45px;
	text-shadow:1px 1px 2px #444444;
	font-weight: normal;
	padding-right: 20px;
	padding-left: 20px;
	}
	
	#jMenu li a:hover {
color:#5bbfe9;
	background-color:#636363;
	cursor:pointer;
	transition: background-color 0.3s, color 0.2s, transform 0.3s;
	-moz-transition: background-color 0.3s, color 0.2s, -moz-transform 0.3s;
	-webkit-transition: background-color 0.3s, color 0.2s, -webkit-transform 0.3s;
	-o-transition: background-color 0.3s, color 0.2s,-o-transform 0.3s;
	}
	
/*******************/
/** second niveau **/
/*******************/
#jMenu li ul {
	display:none;
	position:absolute;
	padding:0;
	margin:0;
	box-shadow:0px 0px 5px #353434;
}
	#jMenu li ul li {
		background-color:#322f32;
		display:block;
		border-bottom:1px solid #484548;
		padding:0
	}
	#jMenu li ul li.arrow {
		background:#322f32 url('../arrow_down.png') no-repeat center center;
		height:6px;
		padding:0;
		border-bottom:none;
		padding-bottom:10px
	}
		#jMenu li ul li a {
			font-size:12px;
			text-transform:none;
			padding:7px;
			display:block;
			border-top:1px solid transparent;
			border-bottom:1px solid transparent;
		}
		#jMenu li ul li a.isParent {
			background:#3A3A3A url('../arrow_right.png') no-repeat right center;
		}
			#jMenu li ul li a:hover {
				background-color:#514c52;
				border-top:1px solid #322f32;
				border-bottom:1px solid #322f32;
			}
			
			.separatore_menu  {
	background-color: #3d3d3d;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #737373;
	width:1px;
	padding:0px;
}