/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
	padding:0;
	list-style: none;
	
	width: 660px;
	font-family:Arial, Helvetica, sans-serif, Calibri;
	font-size:14px;
	letter-spacing:0px;
	font-weight:bold;
	text-align:left;
	line-height:20px;
	z-index:999;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 1.2em; margin-top: 10px; /* I'm using ems and px to allow people to zoom their font */
	left: 0px;
	width: 250px;
	padding-bottom:8px;
	
	z-index:999;	
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: 5px; margin-top: 0;
	left: 175px;
	z-index:999;	
	width: 150px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
	float: left;
	display: block;
	position: relative;
	margin-right: -1px;
	
	z-index:999;	
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
	background-image:none;

	z-index:999;	
}
.menulist ul li a{
	padding:3px 6px;
	border-bottom:1px solid #fff;
	text-decoration:none;	
	z-index:999;
	background:#097F31;  /* sous menu */
	color: #ffffff;
	font-color: #ffffff;
	font-weight: bold;
	font-size: 12px;	 
	filter : alpha(opacity=90);
    -moz-opacity : 0.9;
    opacity : 0.9; 
	
}
.menulist ul ul li a{
	padding:3px 6px;
	border-bottom:1px solid #fff;
	text-decoration:none;	
	z-index:999;
	background:#856723;  /* sous menu */
	color: #ffffff;
	font-color: #ffffff;
	font-weight: bold;
	font-size: 12px;	 
}

.menulist ul li a:hover{
	text-decoration:none;
	color: #222222;
	font-color: #222222;
}

.menulist ul>li:last-child {
	margin-bottom: 0px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
	display: block;
	color: #1A5E11;
	font-weight: bold;
	padding:0 13px;
 }

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color:#222222 ;
}
.menulist a.highlighted {
	color:#CB8E00 ;
}
.menulist a .subind {
	display: none;
}
.menulist ul a .subind {
	display: block;
	float: right;
}
.menulist a {
	float: left;
}
.menulist ul a {
	float: none;
}
.menulist a {
	float: none;
}

*:first-child+html .menulist ul li {
	float: left;
	width: 100%;
}

* html .menulist ul li {
	float: left;
	height: 1%;
}
* html .menulist ul a {
	height: 1%;
}
/* End Hacks */
