/*<![CDATA[*/
/* page styling, unimportant for the menu. only makes the page looks nicer */

.tableau1 {
	width: 776px;
	text-align: center;
	padding: 0;
	margin: 0;
	background-color:#ffffff;
}


.tableau1 td.gauche {
/*	border: thin #00CC00 solid;*/
	padding: 5px 0px 5px 0px;
	vertical-align: middle ;
}

.tableau1 td.droite {
/*	border: thin #00CC00 solid;*/
	padding: 5px 0 5px 5px ;
	vertical-align:middle;
}

.tableau1 td.bas {

	padding: 5px ;
	vertical-align:middle;
}


.tableau1 a:hover  /*This makes the backgound of the tabs white instead of the default blue */
 {
	background-color: #ffffff; 
	}


.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 DROITE                        */
/*                                                           */
/*                                                           */
/*************************************************************/

.menudroite {
	width: 10em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menudroite, .menudroite ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menudroite li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menudroite 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 */
}

.menudroite 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 */
}

.menudroite 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 */
.menudroite:after, .menudroite ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menudroite, .menudroite 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 ".menudroite UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menudroite 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 - - - */

.menudroite, .menudroite ul li {
	color: #ffcc00;
	background: #03572e;
}

/* Set the width of the right side buttons */
.menudroite {
	width: 16em;
	float: right;
}

/* Set the width of the right side sub-buttons */
.menudroite ul {
	width: 16em;
}

.menudroite a {
	text-decoration: none;
	color: #ffcc00;
	padding: .4em 1em;
	display: block;
}

.menudroite a:hover, .menudroite li:hover>a {
	color: #ffcc00;
	background-color: #167d04; 
}

.menudroite li {	/* create borders around each item */
	border: 1px solid #ccc;
}
.menudroite>li + li, .menudroite ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	border: 1px solid #ccc;
}

.menudroite li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 5px;
	right: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menudroite>li:first-child>a, .menudroite li + li + li li:first-child>a {
	color: #ffcc00;
}

/*]]>*/


<!--[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/
 */
.menudroite ul {
	visibility: visible;
	position: static;
}

.menudroite, .menudroite ul {	/* float.clear */
	zoom: 1;
}

.menudroite li.adxmhover {
	z-index: 10000;
}

.menudroite .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menudroite .adxmhoverUL {	/* submenu goes to the right */
	right: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menudroite ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menudroite li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menudroite li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menudroite a:hover, .menudroite .adxmhoverA {		/* li:hover>a selector */
	color: #ffcc00;
	background-color: #167d04; 
}

.menudroite .adxmhoverUL {	/* inset submenus, to show off overlapping */
	top: 5px;
	right: 90%;
}

/*]]>*/
<![endif]-->

/*************************************************************/
/*                                                           */
/*                                                           */
/* - - - ADxMenu: BASIC styles GAUCHE                        */
/*                                                           */
/*                                                           */
/*************************************************************/

.menugauche {
	width: 10em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menugauche, .menugauche ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menugauche li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menugauche 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 */
}

.menugauche ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top right corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menugauche li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the left of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menugauche:after, .menugauche ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menugauche, .menugauche 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 ".menugauche UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menugauche ul {
    background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0  0 -10px ;
	/*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 - - - */

.menugauche, .menugauche ul li {
	color: #ffcc00;
	background: #03572e;
}

/* Set the width of the right side buttons */
.menugauche {
	width: 16em;
/*	float: right;*/
}

/* Set the width of the right side sub-buttons */
.menugauche ul {
	width: 16em;
}

.menugauche a {
	text-decoration: none;
	color: #ffcc00;
	padding: .4em 1em;
	display: block;
}

.menugauche a:hover, .menugauche li:hover>a {
	color: #ffcc00;
	background-color: #167d04; 
}

.menugauche li {	/* create borders around each item */
	border: 1px solid #ccc;
}
.menugauche>li + li, .menugauche ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	border: 1px solid #ccc;
}

.menugauche li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menugauche>li:first-child>a, .menugauche li + li + li li:first-child>a {
	color: #ffcc00;
}

/*]]>*/


<!--[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/
 */
.menugauche ul {
	visibility: visible;
	position: static;
}

.menugauche, .menugauche ul {	/* float.clear */
	zoom: 1;
}

.menugauche li.adxmhover {
	z-index: 10000;
}

.menugauche .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menugauche .adxmhoverUL {	/* submenu goes to the left */
	left: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menugauche ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menugauche li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menugauche li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menugauche a:hover, .menugauche .adxmhoverA {		/* li:hover>a selector */
	color: #ffcc00;
	background-color: #167d04; 
}

.menugauche .adxmhoverUL {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/*]]>*/

<![endif]-->

/*************************************************************/
/*                                                           */
/*                                                           */
/* - - - 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: #eee;
	background: #03572e;
}

.menuhaut ul {
	width: 11em;
}

/*--------------Change spacing here -----------------------*/
.menuhaut a.langue {
	color:#ADC0E1;
}

.menuhaut a {
	text-decoration: none;
	color: #ffcc00;
	padding: .5em .5em;
	display: block;
	position: relative;
}

.menuhaut a:hover, .menuhaut li:hover>a {
	color: #ffcc00;
}

.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%;
}

/* special colouring for "Main menuhaut:", and for "xx submenuhaut" items in ADxmenuhaut
	placed here to clarify the terminology I use when referencing submenuhauts in posts */
.menuhaut>li:first-child>a, .menuhaut li + li + li li:first-child>a {
	color: #ffcc00;
}

/* 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: #ffcc00;
	background-color: #167d04; 
}

.menuhaut .adxmhoverUL .adxmhoverUL {	/* inset 2nd+ submenuhauts, to show off overlapping */
	top: 5px;
	left: 90%;
}

/*]]>*/

<![endif]-->


/*************************************************************/
/*                                                           */
/*                                                           */
/* - - - ADxMenu: BASIC styles GAUCHE petit                       */
/*                                                           */
/*                                                           */
/*************************************************************/

.menugauchep {
	width: 10em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menugauchep, .menugauchep ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style:disc;

/*	display: block;*/
}

.menugauchep li {
	padding-left: 0;
	padding-bottom: 4px;
	margin-left: 20px;
	list-style: disc;
	list-style-type:disc;
/*	padding: 0;
	border: 0;*/
/*	display: block;*/
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menugauchep 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 */
}

.menugauchep ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top right corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menugauchep li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the left of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menugauchep:after, .menugauchep ul:after {
	content: ".";
	height: 0;
/*	display: block;*/
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menugauchep, .menugauchep 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 ".menugauchep UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menugauchep ul {
    background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0  0 -10px ;
	/*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 - - - */

.menugauchep, .menugauchep ul li {
	color: #0033ff;
	background: #ffffff;
}

/* Set the width of the right side buttons */
.menugauchep {
	width: 16em;
/*	float: right;*/
}

/* Set the width of the right side sub-buttons */
.menugauchep ul {
	width: 16em;
}

.menugauchep a {
	text-decoration: none;
	color: #0033ff;
	padding: .4em 1em;
/*	display: block;*/
}

.menugauchep a:hover, .menugauchep li:hover>a {
	color: #ffcc00;
	background-color: #0033ff; 
}

.menugauchep li {	/* create borders around each item */
	border: 0px solid #ccc;
}
.menugauchep>li + li, .menugauchep ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	border: 0px solid #ccc;
}

.menugauchep li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 70%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menugauchep>li:first-child>a, .menugauchep li + li + li li:first-child>a {
/*	color: #ffcc00;
	background-color: #0033ff; */
/*color: #0033ff;*/
}

/*]]>*/


<!--[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/
 */
.menugauchep ul {
	visibility: visible;
	position: static;
}

.menugauchep, .menugauchep ul {	/* float.clear */
	zoom: 1;
}

.menugauchep li.adxmhover {
	z-index: 10000;
}

.menugauchep .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menugauchep .adxmhoverUL {	/* submenu goes to the left */
	left: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menugauchep ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menugauchep li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menugauchep li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menugauchep a:hover, .menugauchep .adxmhoverA {		/* li:hover>a selector */
	color: #ffcc00;
	background-color: #0033ff;
	z-index: 10000;
	}

.menugauchep .adxmhoverUL {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 70%;
}

/*]]>*/

<![endif]-->


/*************************************************************/
/*                                                           */
/*                                                           */
/* - - - ADxMenu: BASIC styles DROITE  COURT                      */
/*                                                           */
/*                                                           */
/*************************************************************/

.menudroitec {
	width: 10em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menudroitec a.langue {
	color:#ADC0E1;
	text-align:center;
}

.menudroitec, .menudroitec ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menudroitec li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menudroitec 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 */
}

.menudroitec 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 */
}

.menudroitec 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 */
.menudroitec:after, .menudroitec ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menudroitec, .menudroitec 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 ".menudroitec UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menudroitec 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 - - - */

.menudroitec, .menudroitec ul li {
	color: #ffcc00;
	background: #03572e;
}

/* Set the width of the right side buttons */
.menudroitec {
	width: 150px; /*13.8em;*/
	float: none;
}

/* Set the width of the right side sub-buttons */
.menudroitec ul {
	width: 150px; /*13.8em;*/
}

.menudroitec a {
	text-decoration: none;
	color: #ffcc00;
	padding: .4em 1em;
	display: block;
}

.menudroitec a:hover, .menudroitec li:hover>a {
	color: #ffcc00;
	background-color: #167d04; 
}

.menudroitec li {	/* create borders around each item */
	border: 1px solid #ccc;
}
.menudroitec>li + li, .menudroitec ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	border: 1px solid #ccc;
}

.menudroitec li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 5px;
	right: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
/*.menudroitec>li:first-child>a, .menudroitec li + li + li li:first-child>a {
	color: #ffcc00;
}/*

/*]]>*/


<!--[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/
 */
.menudroitec ul {
	visibility: visible;
	position: static;
}

.menudroitec, .menudroitec ul {	/* float.clear */
	zoom: 1;
}

.menudroitec li.adxmhover {
	z-index: 10000;
}

.menudroitec .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menudroitec .adxmhoverUL {	/* submenu goes to the right */
	right: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menudroitec ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menudroitec li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menudroitec li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menudroitec a:hover, .menudroitec .adxmhoverA {		/* li:hover>a selector */
	color: #ffcc00;
	background-color: #167d04; 
}

.menudroitec .adxmhoverUL {	/* inset submenus, to show off overlapping */
	top: 5px;
	right: 90%;
}

/*]]>*/
<![endif]-->