﻿/*MENU PRINCIPALE*/

.menu_container {
    width: 100%;
}

.down_arrow {
    font-size: 10px;
}

#menuroot {
	margin: 0;
	padding: 5px 0px 0;
	line-height: 100%;
    background-color: #286a9b;  
}
#menuroot li {
	margin: 0 5px;
	padding: 0 0 5px;
	float: left;
	position: relative;
	list-style: none;
}
/* main level link */
#menuroot a {
	font-weight: bold;
    font-size: 15px;
	color: white;
	text-decoration: none;
	display: block;
	padding:  10px 10px;
	margin: 0;
}
/* main level link hover */
#menuroot .current a, #menuroot li:hover > a {
	background-color: #286a9b; /* for non-css3 browsers */
	color: white;
}
/* sub levels link hover */
#menuroot ul li:hover a, #menuroot li:hover li a {
	background-color: #286a9b;
	border: none;
	color: white;
}
#menuroot ul a:hover {
	background: #286a9b !important; /* for non-css3 browsers */
	color: #fff !important;
}
/* level 2 list */
#menuroot ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 38px;
	left: 0;
}
/* dropdown */
#menuroot li:hover > ul {
	display: block;
}
#menuroot ul li {
	float: none;
	margin: 0;
	padding: 0;
    z-index:1;
}
#menuroot ul a {
	font-weight: normal;
}
/* level 3+ list */
#menuroot ul ul {
	left: 181px;
	top: -3px;
}
/* rounded corners for first and last child */
#menuroot ul li:first-child > a {
}
#menuroot ul li:last-child > a {
}
/* clearfix */
#menuroot:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#menuroot {
	display: inline-block;
}
html[xmlns] #menuroot {
	display: block;
}
* html #menuroot {
	height: 1%;
}
/*FINE MENU PRINCIPALE*/