/* All <ul> tags in the menu including the first level */
ul.menulist {
	margin: 0;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	margin: 0;
	display: none;
	position: absolute;
	top: 0;
	margin-top: 13px;
	/* I'm using ems and px to allow people to zoom their font */
	left: 24px;
	width: 150px;
	padding-left: 0;
}

#search ul li ul  {
	margin: 0;
	display: none;
	position: absolute;
	top: 0;
	margin-top: 13px;
	left: 24px;
	padding-left:0;
}

/* Second and third etc. level submenus - position across from parent instead */
#navigation .menulist ul ul, .menulist ul ul {
	top: -5px;
	margin-top: 3px;
	left: 148px;
	padding-left: 0;
}

/*
 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;
	text-align: left;
	margin-right: -1px;
	margin-top: 5px;
	background: transparent url(../images/separation_menu.gif) no-repeat scroll left center;	
	padding:0 16px 0 19px;
}

.listsearch li {
	float: left;
	display: block;
	position: relative;
	text-align: relative;
	margin-right: -1px;
	background: transparent url(../images/separation_menu.gif) no-repeat scroll left center;	
	padding: 0 20px 0 25px;	
}

#search ul li ul li {
	background: #F2F2F2 none repeat scroll 0 0;
	padding: 5px 47px 5px 5px;	
}

.menulist li.fin {
	padding-right: 0;	
}

.menulist li.no_point {
	background: none;	
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li, .listsearch ul li {
	background: #F2F2F2 none repeat scroll 0 0;
	border-color: -moz-use-text-color;
	border-style: dashed none;
	border-width: 1px medium;
	float: none;
	margin: 0;
	margin-bottom: -1px;
	padding:10px 10px 10px 5px;
}

.menulist ul li:hover, #search ul li ul li:hover {
	background: #fafafa;	
}

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

/* Links inside the menu */
.menulist a {
	display: block;
	font-weight: bold;
	/* font-style: italic; */
	text-decoration: none;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
	float: left;
}

.menulist ul a {
	float: none;
}

/* \*/
.menulist a {
	float: none;
	font-size:12px;
}

/* */ /*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/

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

* html .menulist ul li {
	float: left;
	height: 1%;
}

* html .menulist ul a {
	height: 1%;
}

/* Hacks css pour IE7 menu sur la search bar */

*+html #search ul li ul li {
	display: block;
	padding: 10px;
	width: 120px;
}


/* End Hacks */


/* --------------------------------------------------------------------------------------- */
/* _______________________________________________________________________________________ */

/* -------------------------------------MENU ACCORDEON------------------------------------ */

#vertical_container {

}

.accordion_toggle {
	display: block;
	outline: none;
	cursor: pointer;
	margin: 0;
}

.accordion_toggle_active {
	background: #A7A6A6;
	border-bottom: 1px dashed #6A6A6A;
}

.accordion_content {
	overflow: hidden;
}

.vertical_accordion_toggle {
	display: block;
	height: 30px;
	width: 600px;
	background: url(images/accordion_toggle.jpg) no-repeat top right #a9d06a;
	padding: 0 10px 0 10px;
	line-height: 30px;
	color: #ffffff;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 12px;
	color: #000000;
	border-bottom: 1px solid #cde99f;
	cursor: pointer;
	margin: 0 0 0 0;
}

.vertical_accordion_toggle_active {
	background: url(images/accordion_toggle_active.jpg) no-repeat top right #e0542f;
	color: #ffffff;
	border-bottom: 1px solid #f68263;
}










