/*<![CDATA[*/
/* page styling, unimportant for the menu. only makes the page looks nicer */

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

hr {
color: #056536;
height: 1px;
width: 100%;
}

/*************************************************************/
/*                                                           */
/*                                                           */
/* - - - ADxMenu: BASIC styles HAUT                          */
/*                                                           */
/*                                                           */
/*************************************************************/

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menuhaut, .menuhaut ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menuhaut li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}



.menuhaut li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menuhaut */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menuhaut li li {
	float: none;/* items of the nested menuhauts are kept on separate lines */
}

.menuhaut ul {
	visibility: hidden;	/* initially hide all submenuhauts. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menuhaut li:hover>ul {
	visibility: visible;	/* display submenuhaut them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menuhaut li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menuhaut:after, .menuhaut ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow:  hidden;
	clear: both;
}
.menuhaut, .menuhaut ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenuhaut --
	it should not disappear when your mouse moves a bit outside the submenuhaut
	YOU SHOULD NOT STYLE the background of the ".menuhaut UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menuhaut ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menuhaut ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenuhaut.END -- */






/* - - - ADxmenuhaut: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menuhaut, .menuhaut ul li {
	color: #000000;
	background: #b9d65b;
}


.menuhaut ul {
	width: 11em;
}

/*--------------Change spacing here -----------------------*/

.menuhaut a {
	text-decoration: none;
	color: #000000;
	padding: .5em .5em;
	display: block;
	position: relative;
}

.menuhaut a:hover, .menuhaut li:hover>a {
	color: #b6f461;
}

.menuhaut li li {	/* create borders around each item */
	border: 1px solid #ccc;
}
.menuhaut ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	border: 1px solid #ccc;	
}

.menuhaut li li:hover>ul {	/* inset 2nd+ submenuhauts, to show off overlapping */
	top: 5px;
	left: 90%;
}


/* Fix for IE5/Mac \*//*/
.menuhaut a {
	float: left;
}
/* End Fix */

/*]]>*/






<!--[if lte IE 6]>
<style type="text/css" media="screen, tv, projection">
/*<![CDATA[*/

/* - - - ADxmenuhaut: IE6 BASIC styles [MANDATORY] - - - */

/*
	this rules improves accessibility - if Javascript is disabled, the entire menuhaut will be visible
	of course, that means that it might require different styling then.
	in which case you can use adxie class - see: aplus.co.yu/adxmenuhaut/examples/ie6-double-style/
 */
.menuhaut ul {
	visibility: visible;
	position: static;
}

.menuhaut, .menuhaut ul {	/* float.clear */
	zoom: 1;
}

.menuhaut li.adxmhover {
	z-index: 10000;
}

.menuhaut .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menuhaut .adxmhoverUL {	/* 1st-level submenuhaut go below their parent item */
	top: 100%;
	left: 0;
}

.menuhaut .adxmhoverUL .adxmhoverUL {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* - - - ADxmenuhaut: DESIGN styles - - - */

.menuhaut ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menuhaut li li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menuhaut li li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menuhaut a:hover, .menuhaut .adxmhoverA {		/* li:hover>a selector */
	color: #b6f461;
	background-color: #424242;
}

.menuhaut .adxmhoverUL .adxmhoverUL {	/* inset 2nd+ submenuhauts, to show off overlapping */
	top: 5px;
	left: 90%;
}

/*]]>*/

<![endif]-->



/*************************************************************/
/*                                                           */
/*                                                           */
/*       Menu de droite                                      */
/*                                                           */
/*                                                           */
/*************************************************************/



.langue {
	width: 9em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.langue, .langue ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.langue li {
	margin: 0;
	padding: 0;
	border: 0;
/*	height:3em;*/
    line-height:3em;
    display: block;
	text-align:center;
	font-weight:bolder;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.langue li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.langue ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	right: 0;	/* while hidden, always keep them at the top right corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.langue li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	right: 100%;	/* and move them to the left of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.langue:after, .langue ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.langue, .langue ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".langue UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.langue ul {
    background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 10px 30px 30px;
	margin: -30px -10px 0 0 ;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}


/* - - - ADxMenu: DESIGN styles - - - */

.langue, .langue ul li {
	color: #b6f461;
	background: #333333;
}

/* Set the width of the right side buttons */
.langue {
	width: 9em;
	float: right;
}

/* Set the width of the right side sub-buttons */
.langue ul {
	width: 16em;
}

.langue a {
	text-decoration: none;
	color: #b6f461;
	padding: .4em 1em;
	display: block;
}

.langue a:hover, .langue li:hover>a {
	color: #000000;
	background-color: #b9d65b; 
}

.langue li {	/* create borders around each item */
	border: 1px solid #ccc;
}
.langue>li + li, .langue ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	border: 1px solid #ccc;
}

.langue li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 5px;
	right: 90%;
}


/*]]>*/


<!--[if lte IE 6]>
<style type="text/css" media="screen, tv, projection">
/*<![CDATA[*/

/* - - - ADxMenu: BASIC styles - - - */

/*
	this rules improves accessibility - if Javascript is disabled, the entire menu will be visible
	of course, that means that it might require different styling then.
	in which case you can use adxie class - see: aplus.co.yu/adxmenu/examples/ie6-double-style/
 */
.langue ul {
	visibility: visible;
	position: static;
}

.langue, .langue ul {	/* float.clear */
	zoom: 1;
}

.langue li.adxmhover {
	z-index: 10000;
}

.langue .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.langue .adxmhoverUL {	/* submenu goes to the right */
	right: 100%;
}


/* - - - ADxMenu: DESIGN styles - - - */

.langue ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.langue li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.langue li {	/* prevent double-line between items */
	margin-top: -1px;
}

.langue a:hover, .langue .adxmhoverA {		/* li:hover>a selector */
	color: #000000;
	background-color: #b9d65b; 
}

.langue .adxmhoverUL {	/* inset submenus, to show off overlapping */
	top: 5px;
	right: 90%;
}

/*]]>*/
<![endif]-->


