:root
	{
	/*	-----------------COULEURS DU MENU---------------------------	*/

	--fnd_inact: #999999;	/*	Gris Moyen								*/
	--fnd_rover: #000000;	/*	Noir									*/
	--fnd_actif: #CCCCCC;	/*	Gris Clair								*/
	--fnd_actsub: #8ca588;	/*	Vert moins Pâle							*/

	--txt_inact: #FFFFFF;	/*	Blanc									*/
	--txt_rover: #000000;	/*	Noir									*/
	--txt_actif: #FFFFFF;	/*	Blanc									*/

	/*	-----------------COULEURS DU MAINLAYOUT----------------------	*/

	--fnd_tete:	 #FFFFFF;	/*											*/
	--fnd_pied:	 #FFFFFF;	/*											*/
	--fnd_corps: #000000;	/*											*/

	--fnd_fonce: #488789;	/*	turquoise foncé							*/
	--fnd_moyen: #999999;	/*	Gris moyen								*/
	--fnd_moycl: #333333;	/*	Gris foncé								*/
	--fnd_clair: #FFFFFF;	/*	Blanc									*/

	--txt_discr: #b5cdb5;	/*	Vert Pâle comme le fond pour contour	*/
	--txt_norma: #999999;	/*	Gris moyen								*/
	--txt_titre: #CCCCCC;	/*	Gris clair								*/
	--txt_linka: #9ce2e5;	/*	Turquoise moyen							*/
	--txt_rollo: #488789;	/*	Turquoise foncé							*/
	--txt_clair: #FFFFFF;	/*	Blanc									*/
	}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button
	{
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: inline-block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
#cssmenu:after,
#cssmenu > ul:after
	{
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
	}
#cssmenu #menu-button
	{
	display: none;
	}

/***********************************************************/
/****	FOND DE LA BARRE DE MENU						****/
/***********************************************************/
#cssmenu
	{
	width: auto;
	background: var(--fnd_inact);
	font-family: "Belleza", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-optical-sizing: auto;
	border-radius: 0px;

	}
#cssmenu.align-center > ul
	{
	font-size: 0;
	text-align: center;
	}
#cssmenu.align-center ul ul
	{
	text-align: left;
	}
#cssmenu.align-center > ul > li
	{
	display: inline-block;
	float: none;
	}
#cssmenu.align-right > ul > li
	{
	float: right;
	}
#cssmenu.align-right ul ul
	{
	text-align: right;
	}
#cssmenu > ul > li
	{
	float: left;
	}

/******************************************************* */
/****		ONGLET PASSIF							**** */
/******************************************************* */
#cssmenu > ul > li > a
	{
	/*	text-transform: uppercase;					*/
	padding: 13px 17px;
	font-size: 19px; /*	par défaut 19px	*/
	color: var(--txt_inact);
	font-weight: 500;
	text-decoration: none;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
	height: 42px; /* à ajouter si changement du font-size: */
	}

/******************************************************* */
/****		ONGLET ACTIF							**** */	
/******************************************************* */
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li > a:hover,
#cssmenu > ul > li.active > a
	{
	border-radius: 2px;
	background: var(--fnd_rover);
	color: var(--txt_actif);
	/*	font-weight: bold;		*/
	}

#cssmenu > ul > li.has-sub > a
	{
	padding-right: 40px;
	}

/*	******************************************************************************************** */
/*	****		ROND    FLECHE    DE    DEROULEMENT    OFF									**** */
/*	******************************************************************************************** */
/*	#cssmenu ul > li.has-sub > a:after
	{
	content: '';
	position: absolute;
	right: 9px;
	top: 12px;
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	background: var(--fnd_fonce);
	background-size: 36px 36px;
	background-position: 0 0;
	background-repeat: no-repeat;
	-webkit-transition: all 0.1s ease-out;
	-moz-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	-o-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
	}
#cssmenu ul > li.has-sub:hover > a:after
	{
	background-position: 0 -18px;
	}	*/

/**********************************************************/
/***		TRIANGLE FLECHE DE DEROULEMENT OFF			***/
/**********************************************************/
#cssmenu ul > li.has-sub > a:before
	{
	content: '';
	position: absolute;
	right: 11px;
	top: 18px;
	display: block;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-top-color: var(--txt_inact);
	z-index: 99;
	}


/**********************************************************/
/***		TRIANGLE FLECHE DE DEROULEMENT ON			***/
/**********************************************************/
#cssmenu ul > li.has-sub:hover > a:before
	{
	border-top-color: var(--txt_rover);
	}

#cssmenu ul ul
	{
	position: absolute;
	left: -9999px;
	opacity: 0;
	-webkit-transition: top .2s ease, opacity .2s ease;
	-moz-transition: top .2s ease, opacity .2s ease;
	-ms-transition: top .2s ease, opacity .2s ease;
	-o-transition: top .2s ease, opacity .2s ease;
	transition: top .2s ease, opacity .2s ease;
	}

#cssmenu > ul > li > ul
	{
	top: 200px;
	padding-top: 8px;
	border-radius: 20px;
	}

/**********************************************************/
/***		POSITION SOUS MENU NIVEAU 1					***/
/**********************************************************/
#cssmenu > ul > li:hover > ul
	{
	left: 0px;
	top: 37px;
	opacity: 1;
	}

#cssmenu.align-right > ul > li:hover > ul
	{
	right: 0;
	}

#cssmenu ul ul ul
	{
	top: 40px;
	}

/**********************************************************/
/***		POSITION SOUS SOUS MENU NIVEAU 1			***/
/**********************************************************/
#cssmenu ul ul > li:hover > ul
	{
	top: 0;
	left: 218px;	/*	178	*/
	padding-left: 10px;
	opacity: 1;
	}

#cssmenu.align-right ul ul > li:hover > ul
	{
	left: 0;
	right: 178px;
	padding-left: 0;
	padding-right: 10px;
	opacity: 1;
	}

/*  ****************************************************** */
/*  *****     SOUS - MENU   OFF                      ***** */
/*  ****************************************************** */
#cssmenu ul ul li a
	{
	width: 300px;
	padding: 10px 25px;
	font-size: 16px;
	font-weight: 500;
	background: var(--fnd_inact);
	color: var(--txt_inact);
	text-decoration: none;
	text-align: left;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
	}

/*  ****************************************************** */
/*  *****     SOUS - MENU   ON                       ***** */
/*  ****************************************************** */
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li > a:hover,
#cssmenu ul ul li.active > a
	{
	background: var(--fnd_rover);
	color: var(--txt_actif);
	border-radius: 0px 0px 0px 0px;
	}

#cssmenu ul ul li:first-child > a
	{
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	}

#cssmenu ul ul li:last-child > a
	{
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	}

/*	******************************************************************************************** */
/*	****		ROND    FLECHE    DE    DEROULEMENT    OFF    SOUS-MENU						**** */
/*	******************************************************************************************** */
#cssmenu ul ul > li.has-sub > a:after
	{
	right: 13px;
	top: 10px;
	background: var(--fnd_rover);
	/*
	background-size: 36px 36px;
	background-position: 0 0;
	background-repeat: no-repeat;
	*/
	}

#cssmenu.align-right ul ul > li.has-sub > a:after
	{
	right: auto;
	left: 12px;
	}

#cssmenu ul ul > li.has-sub:hover > a:after
	{
	background-position: 0 -18px;	/* -18	*/
	}

/*	********************************************************* */
/*	****	TRIANGLE DE SOUS MENU VERS SOUS-SOUS MENU	***** */
/*	********************************************************* */
#cssmenu ul ul > li.has-sub > a:before
	{
	top: 11px;
	right: 10px;
	border-top-color: transparent;
	border-left-color: var(--txt_inact);
	}

#cssmenu.align-right ul ul > li.has-sub > a:before
	{
	top: 16px;
	right: auto;
	left: 16px;
	border-top-color: transparent;
	border-right-color: var(--txt_rover);
	border-left-color: transparent;
	}

#cssmenu ul ul > li.has-sub:hover > a:before
	{
	border-top-color: transparent;
	border-left-color: var(--txt_inact);
	}

#cssmenu.align-right ul ul > li.has-sub:hover > a:before
	{
	border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: var(--txt_rover);
	}



/**********************************************************/
/***		SMALL SCREEN								***/
/**********************************************************/
#cssmenu.small-screen
	{
	width: 100%;		/*	100%	*/
	/*	width: 1200px;	*/
	height: 42px;
	}

#cssmenu.small-screen ul,
#cssmenu.small-screen ul ul,
#cssmenu.small-screen ul ul ul,
#cssmenu.small-screen > ul,
#cssmenu.small-screen.align-center > ul,
#cssmenu.small-screen > ul > li > ul,
#cssmenu.small-screen > ul > li:hover > ul,
#cssmenu.small-screen ul ul li:hover > ul,
#cssmenu.small-screen ul ul ul li:hover > ul,
#cssmenu.small-screen.align-right ul ul,
#cssmenu.small-screen.align-right ul ul li:hover > ul,
#cssmenu.small-screen.align-right ul ul ul li:hover > ul
	{
	position: relative;
	left: 0;
	right: auto;
	top: 0;
	width: 100%;
	display: none;
	padding: 0;
	opacity: 1;
	text-align: left;
	background: var(--fnd_inact);
	color: var(--txt_inact);
	}

#cssmenu.small-screen ul li :hover
	{
	background: var(--fnd_rover);
	color: var(--txt_rover);
	}

#cssmenu.small-screen ul ul li :hover
	{
	background: var(--fnd_rover);
	color: var(--txt_rover);
	}

#cssmenu.small-screen ul li
	{
	width: 100%;
	border-top: 1px solid rgba(120, 120, 120, 0.2);
	}

#cssmenu.small-screen > ul > li > a,
#cssmenu.small-screen ul ul li a,
#cssmenu.small-screen ul ul li:first-child > a
#cssmenu.small-screen ul ul li:last-child > a
	{
	width: 100%;
	border-radius: 0;
	box-shadow: none;
	background: none;
	}

#cssmenu.small-screen ul ul li:first-child > a
	{
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	/*	box-shadow: inset 0 2px 2px #2491ff;    */
	}

#cssmenu.small-screen ul ul li:last-child > a
	{
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	}

#cssmenu.small-screen ul li a
	{
	padding-left: 13px;
	color: var(--txt_inact);

	}

#cssmenu.small-screen ul ul li a
	{
	padding: 13px 25px 13px 28px;
	background: var(--fnd_inact);
	color: var(--txt_inact);
	}

#cssmenu.small-screen ul ul ul li a
	{
	padding-left: 43px;
	background: var(--fnd_inact);
	color: var(--fnd_inact);
	}

#cssmenu.small-screen ul ul ul ul li a
	{
	padding-left: 58px;
	}

#cssmenu.small-screen > ul > li.has-sub > a:after,
#cssmenu.small-screen > ul > li.has-sub > a:before,
#cssmenu.small-screen ul ul li.has-sub > a:after,
#cssmenu.small-screen ul ul li.has-sub > a:before
	{
	display: none;
	}

/**********************************************************/
/***		SMALL SCREEN	BARRE MENU					***/
/**********************************************************/
#cssmenu.small-screen #menu-button
	{
	position: relative;
	display: block;
	padding: 13px;
	cursor: pointer;

	background: var(--fnd_inact);

	color: var(--txt_inact);

	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	}

/*	******************************************************************************************** */
/*	****		MARGE    GAUCHE    ENTETE    SOUS-MENU    &    SOUS-SOUS-MENU				**** */
/*	******************************************************************************************** */
#cssmenu.small-screen .submenu-button
	{
	position: absolute;
	right: 0;
	display: block;
	width: 100%;
	height: 42px;
	/*	border-left: 1px solid rgba(120, 120, 120, 0.2);	*/
	border-left: 1px solid var(--fnd_rover);
	z-index: 10;
	cursor: pointer;
	}

#cssmenu.small-screen ul ul .submenu-button
	{
	height: 41px;
	}

/*  *********************************************************************** */
/*  *****     ROND DU TRIANGLE FLECHE DE DEROULEMENT SMALL SCREEN     ***** */
/*  *********************************************************************** */
#cssmenu.small-screen ul .submenu-button:after,
#cssmenu.small-screen #menu-button:after
	{
	content: '';
	position: absolute;
	right: 13px;
	top: 10px;
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 15px;
	/*	background: #666666;*/
	background-size: 56px 56px;
	background-position: 0 0;
	background-repeat: no-repeat;
	-webkit-transition: all 0.1s ease-out;
	-moz-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	-o-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
	}

#cssmenu.small-screen ul .submenu-button.submenu-opened:after,
#cssmenu.small-screen #menu-button.menu-opened:after
	{
	background-position: 0 -28px;
	}

#cssmenu.small-screen ul ul .submenu-button:after
	{
	top: 6.5px;
	}

/*  ********************************************************************* */
/*  *****     TRIANGLE DE LA BARRE MENU PETIT ECRAN                 ***** */
/*  ********************************************************************* */
#cssmenu.small-screen #menu-button:before,
#cssmenu.small-screen .submenu-button:before
	{
	content: '';
	position: absolute;
	right: 17px;
	top: 20px;
	display: block;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top-color: var(--txt_inact);
	z-index: 99;
	}

#cssmenu.small-screen ul ul .submenu-button:before
	{
	top: 19.5px;
	}

#cssmenu.small-screen #menu-button.menu-opened:before,
#cssmenu.small-screen .submenu-button.submenu-opened:before
	{
	border-top-color: var(--txt_rover);
	}

#cssmenu.small-screen.select-list
	{
	padding: 5px;
	}
