/* ********************************************* */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,200&display=swap');
#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: 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;
  }
/*	####################################################################################################	*/
/*	####		BARRE DU MENU																		####	*/
/*	####################################################################################################	*/
#cssmenu
	{
	width: auto;
	/*	border-radius: 16px;	*/
	font-family: 'Roboto Flex', sans-serif;
	background: #CC3300;
	/*
	background: -o-linear-gradient(top, #33adff, #0081d6);
	background: -ms-linear-gradient(top, #33adff, #0081d6);
	background: -webkit-linear-gradient(top, #33adff, #0081d6);
	background: -moz-linear-gradient(top, #33adff, #0081d6);
	background: linear-gradient(to bottom, #33adff, #0081d6);
	*/
	}

#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;
  }

/*	####################################################################################################	*/
/*	####		OPTIONS PRINCIPALES OFF																####	*/
/*	####################################################################################################	*/
#cssmenu > ul > li > a
	{
	padding: 20px 10px;
	font-size: 12px;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
	font-weight: 700;
	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;
	}

/*	####################################################################################################	*/
/*	####		OPTIONS PRINCIPALES ON																####	*/
/*	####################################################################################################	*/
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li > a:hover,
#cssmenu > ul > li.active > a
	{
	color: #FFFFFF;
	background: #4F6889;
	background: -webkit-linear-gradient(top,#CC3300 0%, #FF9900 100%);
	background: -ms-linear-gradient(top,	#CC3300 0%, #FF9900 100%);
	background: -moz-linear-gradient(top,	#CC3300 0%, #FF9900 100%);
	background: -o-linear-gradient(top,		#CC3300 0%, #FF9900 100%);
	background: linear-gradient(to bottom,	#CC3300 0%, #FF9900 100%);
	}

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

#cssmenu ul > li.has-sub > a:after
	{
	/*
	content: '';
	position: absolute;
	right: 5px;
	top: 18px;
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 30px;
	background: #FFFF00;
	box-shadow: inset 0 -1px 1px #007dd1, inset 0 2px 1px #4db8ff;
	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;
	}

#cssmenu ul > li.has-sub > a:before
	{
	/*
	content: '';
	position: absolute;
	right: 11px;
	top: 26px;
	display: block;
	width: 0;
	height: 0;
	border: 3px solid transparent;
	border-top-color: #ccefff;
	z-index: 99;
	*/
	}

#cssmenu ul > li.has-sub:hover > a:before {
  border-top-color: #005c99;
}
#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: 92px;
  padding-top: 8px;
  border-radius: 5px;
}
#cssmenu > ul > li:hover > ul {
  left: auto;
  top: 52px;
  opacity: 1;
}
#cssmenu.align-right > ul > li:hover > ul {
  right: 0;
}
#cssmenu ul ul ul {
  top: 40px;
}
#cssmenu ul ul > li:hover > ul {
  top: 0;
  left: 178px;
  padding-left: 10px;
  opacity: 1;
}
#cssmenu.align-right ul ul > li:hover > ul {
  left: auto;
  right: 178px;
  padding-left: 0;
  padding-right: 10px;
  opacity: 1;
}

/*	####################################################################################################	*/
/*	####		SOUS-MENU																			####	*/
/*	####################################################################################################	*/
#cssmenu ul ul li a
  {
  width: 180px;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  color: #660000;
  text-decoration: none;
  background: #FF9900;
  box-shadow: 12px 12px 2px 1px rgba(79, 104, 137, .15);
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  }

/*	####################################################################################################	*/
/*	####		OPTIONS SOUS-MENU ON (ROLL-OVER ACTIF)												####	*/
/*	####################################################################################################	*/
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li > a:hover,
#cssmenu ul ul li.active > a
  {
  color: #FFFFFF;
  background: #CC3300;
  /*
  background: -webkit-linear-gradient(top,#3F536E 0%, #7286A1 100%);
  background: -ms-linear-gradient(top,  #3F536E 0%, #7286A1 100%);
  background: -moz-linear-gradient(top, #3F536E 0%, #7286A1 100%);
  background: -o-linear-gradient(top,   #3F536E 0%, #7286A1 100%);
  background: linear-gradient(to bottom,  #3F536E 0%, #7286A1 100%);
  */
  }

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

#cssmenu ul ul li:last-child > a
  {
  /*  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: inset 0 -3px 0 #0059b3, inset 0 -3px 3px #004c99, 0 1px 1px rgba(0, 0, 0, 0.03), 0 2px 2px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.13);  */
  }

#cssmenu ul ul > li.has-sub > a:after
  {
  /*  right: 12px;
  top: 9.5px;
  background: #0066cc;
  background: -webkit-linear-gradient(top, #0075eb 0%, #006edb 25%, #005cb8 50%, #0075eb 75%, #006edb 100%);
  background: -ms-linear-gradient(top, #0075eb 0%, #006edb 25%, #005cb8 50%, #0075eb 75%, #006edb 100%);
  background: -moz-linear-gradient(top, #0075eb 0%, #006edb 25%, #005cb8 50%, #0075eb 75%, #006edb 100%);
  background: -o-linear-gradient(top, #0075eb 0%, #006edb 25%, #005cb8 50%, #0075eb 75%, #006edb 100%);
  background: linear-gradient(to bottom, #0075eb 0%, #006edb 25%, #005cb8 50%, #0075eb 75%, #006edb 100%);
  box-shadow: inset 0 -1px 1px #004f9e, inset 0 2px 1px #1a8cff;
  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;
}

#cssmenu ul ul > li.has-sub > a:before
  {
  /*  top: 16px;
  right: 16px;
  border-top-color: transparent;
  border-left-color: #a9d1ff; */
  }

#cssmenu.align-right ul ul > li.has-sub > a:before {
  top: 16px;
  right: auto;
  left: 16px;
  border-top-color: transparent;
  border-right-color: #a9d1ff;
  border-left-color: transparent;
}
#cssmenu ul ul > li.has-sub:hover > a:before {
  border-top-color: transparent;
  border-left-color: #004080;
}
#cssmenu.align-right ul ul > li.has-sub:hover > a:before {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: #004080;
}
#cssmenu.small-screen {
  width: 100%;
}
#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;
}
#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 li a {
  padding-left: 13px;
}
#cssmenu.small-screen ul ul li a {
  padding: 14px 25px 14px 28px;
}
#cssmenu.small-screen ul ul ul li a {
  padding-left: 43px;
}
#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;
}
#cssmenu.small-screen #menu-button {
  position: relative;
  display: block;
  padding: 20px;
  padding-left: 13px;
  cursor: pointer;
  font-size: 14px;
  color: #ccefff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#cssmenu.small-screen .submenu-button {
  position: absolute;
  right: 0;
  display: block;
  width: 54px;
  height: 54px;
  border-left: 1px solid rgba(120, 120, 120, 0.2);
  z-index: 10;
  cursor: pointer;
}
#cssmenu.small-screen ul ul .submenu-button {
  height: 41px;
}
#cssmenu.small-screen ul .submenu-button:after,
#cssmenu.small-screen #menu-button:after {
  content: '';
  position: absolute;
  right: 13px;
  top: 13px;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 15px;
  background: #0099ff;
  background: -webkit-linear-gradient(top, #1fa5ff 0%, #0f9fff 25%, #008deb 50%, #1fa5ff 75%, #0f9fff 100%);
  background: -ms-linear-gradient(top, #1fa5ff 0%, #0f9fff 25%, #008deb 50%, #1fa5ff 75%, #0f9fff 100%);
  background: -moz-linear-gradient(top, #1fa5ff 0%, #0f9fff 25%, #008deb 50%, #1fa5ff 75%, #0f9fff 100%);
  background: -o-linear-gradient(top, #1fa5ff 0%, #0f9fff 25%, #008deb 50%, #1fa5ff 75%, #0f9fff 100%);
  background: linear-gradient(to bottom, #1fa5ff 0%, #0f9fff 25%, #008deb 50%, #1fa5ff 75%, #0f9fff 100%);
  box-shadow: inset 0 -1px 1px #007dd1, inset 0 2px 1px #4db8ff;
  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;
}
#cssmenu.small-screen #menu-button:before,
#cssmenu.small-screen .submenu-button:before {
  content: '';
  position: absolute;
  right: 23px;
  top: 26px;
  display: block;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #ccefff;
  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: #005c99;
}
#cssmenu.small-screen.select-list {
  padding: 5px;
}


/* ********************************************* */