/* menuV.css
 * For: menuDropdown.js (version: 0.1x)
 */

.neomenu {
	/*background-color: #EEE;*/
/*	background-color: #EEE;*/
	color: #000;
}

.neomenu #menulist {
	border: 1px solid #CCC;
	/* do not use a position other than 'static' here */
	/* if the menu is vertical:
	* margin-left + border-left-width + padding-left must be equal to
	* margin-right + border-right-width + padding-right
	*/
}

.neomenu #menulist li a {
	width: 165px;
	background: none;
	color: #000;
/*	border: 1px solid #EEE;*/
	/*border-color: #ff8637;*/
	border: 1px solid #fff;
	text-decoration: none;
	margin: 0;
	padding: 0;
	padding-left:5px;
	/* always set margin to '0' */
	/* Win/IE5.0 will ignore border and padding if display is 'inline' */
}
/*MENU PRINCIPAL*/
.neomenu #menulist li a:hover, 
.neomenu #menulist li a:focus {
	/*FOND DU MENU*/
	/*background: #f8f8f8;*/
	/*background: #9EC95E;*/
	/*background: #def4bd;*/
	/*background: #f4d6a6;*/
	color: #990000;
	border-color: #CCC;
	/*background: #CCC;*/
	
}
/*SOUS-MENU*/
.neomenu #menulist li a.sublevel {
	color: #000;
	/*width: 6em;*/
	width: 174px;
	/*background: #ff8637;*/
}

.neomenu #menulist li a.sublevel:hover, 
.neomenu #menulist li a.sublevel:focus {
	color: #000;
	border-color: #990000;
}


.neomenu #menulist li a div.arrow  {
	background: url("../images/arrow_right.png") no-repeat 100% 50%;
	width:160px;
	margin-left:5px;
}


.neomenu #menulist .menu {
	background: #EEE;
	color: #000;
	/*border: 1px solid #CCC;*/
	border: 1px solid #CCC;
	margin: 0;
	padding: 0;
	/* only set '0' or negative margin */
	/* border  width must be the same on the four sides (in 'px' units) */
	/* padding width must be the same on the four sides (in 'px' units) */
}

.neomenu #menulist .menu .menu {
	margin-left: 1px;
	/* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
}