/*
	Re-design juillet 2023
*/

/* noto-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/noto-sans-v30-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* noto-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-v30-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/noto-sans-v30-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/*some base rules - box-sizing, because it's awesome, and fluid images*/
* { 
	/*-moz-box-sizing: border-box; */
	-webkit-box-sizing: border-box; 
	box-sizing: border-box; 
	}

#page nav
{
	display: none;
}

/* La barre supérieure em mode mobile */
#mheader
{
	background: #fff;
	line-height: 40px;
	height: 40px;
	padding: 0 20px;
}

.ajax-loader_bar
{
	display:none ;
	position: absolute; 
	padding-left:5px;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999999; /* Sit on top */
  padding-top: 48px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 12px;
  border: 1px solid #888;
  width: 80%;
  max-width: 460px;
  border-radius: 8px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  top: -10px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}



img {
	max-width: 100%;
}

#map_canvas img {
	max-width: 2000px;
} 
#responsive_map img {
	max-width: 2000px;
} 


/*main structure*/
html {
	font-size: 100%;
	background: #fff;
}

body {
	font: 0.75em 'Noto Sans', Arial, sans-serif; /*base font-size of 14px (14/16 - lineheight based on 21px 1.5x14)*/
	color: #464646;   /* 201e1e */
}

a {
	color: #464646;	
	text-decoration: none;	
}

a:hover {
	color:#777;
	text-decoration: none;	
}

p {
	margin: 0 0 1.5em 0;
}


ul li {list-style-type: square; max-width:95%;}


h1, h2, h3 {
	margin: 0 0 0.5em 0;
}

h2.edito{margin: 0 0 0em 0; padding-top:0px; padding-bottom:25px;}

h3.edito{margin: 0 0 0.5em 0; }

h4,h5 { margin: 0 0 0.5em 0; }

h2 {
	font-size: 1.7em;
}



.step {
  display: inline-block;
  line-height: 1;
}

.step-l {
  display: inline-block;
  line-height: 1;
  padding-left:10px;
  padding-right:10px;
}


.size-12 { font-size: 12px; }

.size-14 { font-size: 14px; }

.size-16 { font-size: 16px; }

.size-18 { font-size: 18px; }

.size-20 { font-size: 20px; }

.size-21 { font-size: 21px; }

.size-22 { font-size: 22px; }

.size-24 { font-size: 24px; }

.size-36 { font-size: 36px; }

.size-40 { font-size: 40px; }

.size-48 { font-size: 48px; }

.size-60 { font-size: 60px; }

.size-72 { font-size: 72px; }


.lirelasuite { padding-left:10px; color:#09F;}
.lirelasuite:hover { color:#06F;}

.page_suivante {float:right; text-align:right;color:#09F;font-size:1.0em}
.page_suivante a {color:#0066FF;}
.page_suivante a:hover {color:#08a0cc;}
.fleche { position:relative; top:4px; opacity:0.5}

.titre_3 {
	font-size: 1.0em;
	text-transform:uppercase;
	border-top: 1px solid #ddd;
	padding-top:5px; 
}

.titre_page {
	font-size: 1.0em;
	text-transform:uppercase;
	font-weight:bold ;
	padding-bottom:10px;
	}

.titre_concours {
	font-size: 1.2em;
	padding-top:0px;
	padding-bottom: 25px;
	font-weight:bold ;
}

.titre_edito {
	font-size: 18px;
	padding-top:0px;
	padding-bottom: 0px;
	font-weight:bold ;
}

.titre_concours_sous_edito {
	font-size: 14px;
	padding-top:0px;
	color:#0066FF;
}
.titre_concours_sous_edito a {
	color:#0066FF;
}
.titre_concours_sous_edito a:hover {color:#08a0cc;}

.lien_bleu {
	color:#0066FF;
}
.lien_bleu:hover {color:#08a0cc;}

.step_bleu {
  display: inline-block;
  cursor:pointer;
  color:#0066FF ;
}


h1.logo {
	margin: 0;
}

h1.logo a {
	text-decoration: none;
}
/*let's structure and color-code our main elements, so we can see what's going on*/

 .wrapper {
	width: 80%;
	max-width: 2000px;	
	margin: 0 auto;
}

.w2 {background-color:#fff; width:80%; margin: 0 auto; position:relative}

/* Ajouts */

#menu { visibility: visible}

.menu_top {
	float:left ;
	margin-top:0px;
	margin-left:0px;
	margin-right:0px;
	padding-right:0px;
	padding-bottom:2px;
	padding-top:5px;
	font-size:0.8em;
	line-height:1.0em;
	text-transform:uppercase ;
	font-family:'Roboto Condensed', Arial, Helvetica, sans-serif;
}

.menu_top_div {
	float:left ;
	margin-top:0px;
	margin-left:4px;
	margin-right:4px;
	padding-right:0px;
	padding-bottom:2px;
	padding-top:5px;
	font-size:0.6em;
	line-height:1.0em;
}

#menu_960 { 
	display: block;
	font-size:1.0em; 
	border-top:1px solid #ddd;
	border-bottom:1px solid #ddd; 
	font-family:'Roboto Condensed', Arial, Helvetica, sans-serif; 
}	
#mheader { display: none;}	

.menu_principal {
	float:left ;
	font-size:1.0em;
	line-height:25px;
	text-transform:uppercase ;
	text-align:center ;
	width:20% ;
	height: 28px;
	padding-left:2px;
	padding-right:2px;
	background-color:#FFF;
}

.menu_principal:hover {
	background-color:#eee;
}

.menu_principal span {
	vertical-align:middle;
  	display:inline-block;
  	line-height:1.0em; /* on rétablit le line-height */	
	}

.menu_principal_div{
	float:left ;
	margin-top:0px;
	margin-left:0px;
	margin-right:0px;
	padding-right:0px;
	padding-bottom:2px;
	font-size:1.1em;
	line-height:2.0em;
	text-transform:uppercase ;
	background-color:#FFF;
}


.logoccc {
	font-size:2.50em;
	float:left; 
	line-height:1.0em;
	font-family:'Roboto Condensed', Arial, Helvetica, sans-serif;
}


header, header_top,
section.content_70,
footer2 {
	float: left;
	width: 100%;
	padding: 1.5em 20px;
	background-color:#ddd;
	
	/*just to pretty things up while we're demoing*/
	-webkit-transition: all 0.4s ease-out;
	/* -moz-transition: all 0.4s ease-out; */
	-o-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

section.content
 {
	float: left;
	width: 100%;
	padding-right:10px;
	padding-top:1.5em;
	padding-bottom:1.5em;
	
	/*just to pretty things up while we're demoing*/
	-webkit-transition: all 0.4s ease-out;
	/* -moz-transition: all 0.4s ease-out; */
	-o-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	
}

aside {
	float: left;
	width: 100%;
	padding-left:10px;
	padding-top:1.5em;
	padding-bottom:1.5em;
	
	/*just to pretty things up while we're demoing*/
	-webkit-transition: all 0.4s ease-out;
	/* -moz-transition: all 0.4s ease-out; */
	-o-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}


section.content_40
 {
	float: left;
	width: 100%;
	padding-right:10px;
	padding-top:1.5em;
	padding-bottom:1.5em;
	
	/*just to pretty things up while we're demoing*/
	-webkit-transition: all 0.4s ease-out;
/* 	-moz-transition: all 0.4s ease-out; */
	-o-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	
}

.aside_60 {
	float: left;
	width: 100%;
	padding-left:10px;
	padding-top:1.5em;
	padding-bottom:1.5em;
	
	/*just to pretty things up while we're demoing*/
	-webkit-transition: all 0.4s ease-out;
	/* -moz-transition: all 0.4s ease-out; */
	-o-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}


.header_top {
	background: #fff;
	padding-left:0px;
	padding-right:0px;
}

header {
	border-bottom:0px solid #666 ;
	padding-left:0px;
	padding-right:0px;
}
section.content {
	background: #fff;
	padding-right:0px;
}

section.content_70 {
	background: #fff;
	padding-left:0px;
	padding-right:0px;
}

aside {
	background: #fff;
	padding-left:0px;
}

footer {
	background: #d7d7d7;
	padding-left:0px;
	padding-right:0px;
	padding-top:5px;
	padding-bottom:5px;
	position: fixed ;
	bottom:0px;
	left:0px;
	z-index:1000;
	
	width:100% ;
}


/*articles*/
article {
	padding: 0 0 0.5em;
	margin: 0 0 1.0em;
	border-bottom: 1px solid #ddd;
}

/* Accordéon des fiches concours et projets */
.accordion-container {
	width:100%;
	font-size: 0.85em;
	background: #ffffff;
	padding: 5px 0px 5px 0px;
	border: 0px solid #cccccc;
}

.accordion-header {
	margin: 5px 0 0 0;
	padding: 5px 0px;
	cursor: pointer;

	background: #fff;
	border-top: 1px solid #ddd;
	text-transform:uppercase;
}

.accordion-container2 {
	width:100%;
	font-size: 0.85em;
	background: #ffffff;
	padding: 5px 0px 5px 0px;
	border: 0px solid #cccccc;
}

.accordion-header2 {
	margin: 5px 0 0 0;
	padding: 5px 0px;

	background: #fff;
	border-top: 1px solid #ddd;
	text-transform:uppercase;
}

.accordion-header-vide {
	margin: 5px 0 0 0;
	padding: 5px 0px;

	background: #fff;
	border-top: 1px solid #ddd;
	text-transform:uppercase;
}


.active-header {
	background: url(../img/active-header.gif) #fff;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: url(../img/active-header.gif) #fff;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	background: url(../img/inactive-header.gif) #fff;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	background: url(../img/inactive-header.gif) #fff;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content {
	display: none;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #ffffff;
	border: 0px solid #cccccc;
}

.c3_top{
	float:none;
	 width:100% ;
	 padding-left:8px;
	 padding-top:0px;
	 padding-bottom:5px;
	 margin-bottom:2px;
	 text-transform:uppercase;
	 background-color:#F4F4F4;
	 border-radius: 4px; 
   }
.c3_top:hover {
	background-color:#E1E1E1;
}
   
.c3_bottom{
	float:none;
	 width:100% ;
	 padding-left:8px;
	 margin-top:12px;
	 padding-bottom:10px;
	 background-color:#F4F4F4;
	 border-radius: 4px; 
   }

.logo_ccc2 {float:left; width:100%;margin-top: 3%;}
.texte_adap2 {float:left; padding-left:8px; width:95%;padding-top:4px;}


/* go on then, one last query.. */
 @media only screen and (max-width: 1420px) {
  .wrapper {
	  width: 95%;
	  max-width: 2000px;	/*well, we don't want to get stupid now, eh?*/
	  margin: 0 auto;
  }
	
  .w2 {background-color:#fff; width:95%; margin: 0 auto; position:relative}			
	
}

@media only screen and (max-width: 1420px) and (min-width: 1024px) {

}

/* Beyond standard 1024, 3 colonnes */
@media only screen and (min-width: 1024px) {

	#titre_concours_projet {
		font-size:24px;
	}
	
	.onglet {
		font-size:12px; 
		width:25%; 
		float:left; 
		border:1px solid #ccc;
		border-bottom:0px; 
		padding:8px; 
		text-align:center;
		border-radius: 4px 4px 0px 0px;
		cursor:pointer ;
	}
	
	#mot_affichage {
		float:left; 
		font-family:'Roboto Condensed', Arial, Helvetica, sans-serif;
		padding-right:5px;
		padding-top:12px;
		font-size:12px;
		display:block;
	}
	
	#logoImg {
		float:left;
		cursor:pointer; 
		padding-right:20px;
	}
	
	.vimeo {
		padding-bottom:20px; 
		width:100%;
	}
	
	.titre_section {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 0px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0.5em;
		margin: 0 0 1.0em;
		padding-top:5px;
	}
	.titre_section_2 {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 0px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0.5em;
		margin: 0 0 1.0em;
		padding-top:5px;
	}
	.titre_section_3 {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 0px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 5px 0 0.5em;
		margin: 0 0 1.0em;
	}
									
		section.content_70 {
			width: 100%;
		}

		section.content {
			width: 65%;
			padding-right:10px;
			padding-left:0px;
		}
		
		aside {
			width: 35%;
			padding-left:10px;
			padding-right:0px;
		}

		section.content_40 {
			width: 50%;
			padding-right:10px;
			padding-left:0px;
		}
		
		.aside_60 {
			width: 50%;
			padding-left:10px;
			padding-right:0px;
		}
		
	/* Les sections du header */
	
		#menu { visibility:hidden}		
		#menu_960 { display:block;font-size:12px;}	
		#mheader { display: none;} 	
	
		.menu_top {
		font-size:1.0em;
		}
	
		.menu_top_div {
		font-size:0.8em;
		margin-top:1px;
		}
		
	/*	#menu { visibility:hidden}		
		#menu_960 { display:block;font-size:1.0em;}	
		#mheader { display: none;} 	  */
		
	#ccc_stats {
		float:left;
		padding-bottom:5px; 
		padding-top:5px; 
		font-size:1.0em; 
		font-family:'Roboto Condensed', Arial, Helvetica, sans-serif; 
	}
	
	.hd1 { 
		  float:left;
		  width:65% ;
		  height:100% ;
		  padding-right:10px;
		  padding-bottom:10px;
		  padding-top:10px;
		}
	
	.hd2{ 
	     float:right;
		 width:35% ;
		 padding-left:10px;
		 padding-top:15px;
	   }
	   
	.menu_partenaires {
		display:none ;
	   }
	   
	.hd3{ 
	    float:none;
		 clear:both ;
		 width:100% ;
		 padding-top:0px;
	   }
	   
	.hd4 { 
		  float:left;
		  width:40% ;
		  padding-right:10px;
		  padding-bottom:10px;
		  padding-top:0px;
		}
	
	.hd5 { 
		  float:left;
		  width:25% ;
		  padding-right:10px;
		  padding-left:10px;
		  padding-bottom:4px;
		}
	  
	.hd6{ 
	     float:right;
		 width:35% ;
		 padding-left:10px;
	   }
	   
	/* les colonnes de la page d'entrée en 3 colonnes */
	.c1 { 
		  float:left;
		  width:40% ;
		  height:100% ;
		  padding-right:10px;
		}
	
	.c2 { 
		  float:left;
		  width:25% ;
		  height:100% ;
		  padding-right:10px;
		  padding-left:10px;
		}
		
	.c2_h {
		display:block ;
	}
	
	.c3 {
	    float:right;
		 width:35% ;
		 height:100% ;
		 padding-left:10px;
	}
	   
	 
	   
	.suggestion {
		float:left ;
		width:100%;
	}
 
} /* Beyond standard 1024, 3 colonnes */

/* 2 colonnes  1023-681px */
@media only screen and (max-width: 1023px) and (min-width: 681px) {

	#titre_concours_projet {
		font-size:24px;
	}
	
	.onglet {
		font-size:12px; 
		width:25%; 
		float:left; 
		border:1px solid #ccc;
		border-bottom:0px; 
		padding:8px; 
		text-align:center;
		border-radius: 4px 4px 0px 0px;
	}
	
	#mot_affichage {
		float:left; 
		font-family:'Roboto Condensed', Arial, Helvetica, sans-serif;
		padding-right:5px;
		padding-top:12px;
		font-size:12px;
		display:block;
	}
	
	
	#logoImg {
		float:left;
		cursor:pointer; 
		padding-right:20px;
	}
	
	
	
		.menu_top {
		font-size:11px;
		}
	
	.menu_top_div {
		margin-left:3px;
		margin-right:3px;
	}
	
	
	.titre_section {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 0px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0.5em;
		margin: 0 0 1.0em;
		padding-top:5px;
	}
	.titre_section_2 {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0.5em;
		margin: 0 0 1.0em;
		padding-top:5px;
	}
	.titre_section_3 {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 0px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 5px 0 0.5em;
		margin: 0 0 1.0em;
	}
		
		#menu { visibility:hidden}		
		#menu_960 { display:block;font-size:12px;}	
		#mheader { display: none;} 	
		
		
	/* Les sections du header */
	
	#ccc_stats {
		float:left;
		padding-bottom:5px; 
		padding-top:5px; 
		font-size:1.0em; 
		font-family:'Roboto Condensed', Arial, Helvetica, sans-serif; 
	}
	
	.hd1 { 
		  float:left;
		  width:55% ;
		  padding-right:10px;
		  padding-bottom:10px;
		  padding-top:10px;
		}
	
	
	.hd2{ 
		 float:right;
		 width:45% ;
		 padding-left:10px;
		 padding-top:15px;
	   }
	   
	.menu_partenaires {
		display:none ;
	   }
	   
	.hd3{ 
	     float:none;
		 clear:both ;
		 width:100% ;
		 padding-top:0px;
	   }
	   
	.hd4 { 
		  float:left;
		  width: 100% ;
		  padding-right:0px;
		  padding-top:0px;
		  padding-bottom:7px;
		}
	 
	.hd5 { 
		  float:left;
		  width:100% ;
		  padding-right:0px;
		  padding-top:4px;
		  padding-bottom:4px;
		  display:none ;
		}
	   
	
	.hd6{ 
	     float:right;
		 width:45% ;
		 padding-left:10px;
		 padding-top:10px;
		 
		 display:none ;
	   }
	
	/* les colonnes de la page d'entrée en 2 colonnes */
	.c1 { 
		  float:left;
		  width:55% ;
		  padding-right:10px;
		}
	
	.c2 { 
	    float:none;
		 clear:both ;
		 width:100% ;
		  padding-right:0px;
		  padding-top:10px;
		  padding-left:0px;
		}
		
	.c2_h {
		display: block ;
	}
	
	.c3{ 
		 float:right;
		 width:45% ;
		 padding-left:10px;
	   }
	
	.suggestion {
		float:left ;
		width:248px;
		height:320px;
	}

} /* 2 colonnes  1023-681px */

@media only screen and (max-width: 680px) {

	#liste_vignette
	{
	}
	
	#titre_concours_projet {
		font-size:20px;
	}
	
	.onglet {
		font-size:12px; 
		width:33%; 
		float:left; 
		border:1px solid #ccc;
		border-bottom:0px; 
		padding:8px; 
		text-align:center;
		border-radius: 4px 4px 0px 0px;
	}
	
	#mot_affichage {
		float:left; 
		font-family:'Roboto Condensed', Arial, Helvetica, sans-serif;
		padding-right:5px;
		padding-top:12px;
		font-size:12px;
		display:none;
	}
		
	#logoImg {
		float:left;
		cursor:pointer; 
		padding-right:10px;
	}
		
	.vimeo {
		padding-bottom:20px; 
		width:100%;
		border-bottom:1px solid #CCC;
	}
	
	.titre_section {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0.5em;
		padding-top:5px;
		margin: 0 0 1.0em;
		padding-top:5px;
	}
	.titre_section_2 {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0.5em;
		margin: 0 0 1.0em;
		padding-top:5px;
	}
	.titre_section_3 {
		font-size: 1.0em;
		text-transform:uppercase;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0.5em;
		margin: 0 0 1.0em;
		padding-top:5px;
	}
		
		
	/* Les sections du header */
		header {padding-bottom:0px;}
	   .texte_adap { width:100%;padding-top:15px;}
		#menu { visibility: visible}		
		#menu_960 { display:none;font-size:12px;}	
		.navbar-menu { display:block;}	
		#mheader { display: block;} 	
		#hd1_mobile {display:block;}
		#hd1_mobile .menu_top {margin-left:15px;}
	
		#hd1_nonmobile {display:none;}
		
		
	#ccc_stats {
		float:left;
		padding-bottom:5px; 
		padding-top:20px; 
		font-size:1.0em; 
		font-family:'Roboto Condensed', Arial, Helvetica, sans-serif; 
	}
		
	
	.hd1 { 
		  float:none;
		  clear:both ;
		  width:100% ;
		  padding-right:0px;
		  padding-bottom:10px;
		  padding-top:5px;
		}
	
	
	.hd2{ 
		  float:none;
		  clear:both ;
		  width:0px ;
		  display:none ;
		  padding-right:0px;
		  padding-left:0px;
		  padding-top:15px;
		}
		
	.menu_partenaires {
		display: block ;
	   }
		
	.hd3{ 
	     float:none;
		 clear:both ;
		 width:100% ;
		 padding-top:0px;
		 display:none ;
	   }
	   
	.hd4 { 
		  float:left;
		  width: 100% ;
		  padding-right:0px;
		  padding-top:7px;
		  padding-bottom:7px;
		}
	   
	.hd5 { 
		  float:none;
		  clear:both ;
		  width:100% ;
		  padding-right:0px;
		  padding-left:0px;
		  padding-top:5px;
		  padding-bottom:4px;
		  display:none ;
		}
	.hd6 { display:none;}
	
	/* les colonnes de la page d'entrée */
	.c1 { 
		  float:none;
		  clear:both ;
		  width:100% ;
		  padding-right:0px;
		}
	
	.c2 { 
		  float:none;
		  clear:both ;
		  width:100% ;
		  padding-right:0px;
		  padding-top:10px;
		  padding-left:0px;
		}
	
	.c2_h {
		display: block ;
	}
	
	.c3{ 
		  float:none;
		  clear:both ;
		  width:100% ;
		  padding-right:5px;
		  padding-top:5px;
		  padding-left:5px;
		}
		
	.suggestion {
		float:none ;
		width:248px;
	   display: block;
	   margin-left: auto;
	   margin-right: auto;
	   margin-bottom: 10px;
	 }

} /* 1 colonnes 680px et moins */


/*Menu avec icone pour mobile non visible si 680px et plus */
@media only screen and (min-width:680px){
	#hd1_mobile {display:none;}
	#hd1_nonmobile {display:block;}
	.navbar-menu {display:block;}
}

/* Pour le menu mobile */
.barre-mobile {
	position: fixed;
	top: 0;
	left: 0;
	background-color: #F4F4F4;
	height: 50px;
	width: 100%;
	transition: 0.3s;
	z-index: 98;
	padding-left: 20px;
}

.menu {
	position: fixed;
	top: 0;
	left: 0;
	background-color: #F4F4F4;
	height: 50px;
	width: 50px;
	cursor: pointer;
	transition: 0.3s;
	z-index: 99;
}
.menu span {
	position: absolute;
	height: 3px;
	width: 25px;
	background-color: #0066FF;
   top: 50%;
   left: 20px;
   transform: translate(-50%,-50%);
   transition: 0.3s;
}
.menu span:before {
	content: '';
	position: absolute;
	top: -8px;
	background-color: #0066FF;
	height: 3px;
	width: 25px;
	transition: 0.3s;
}
.menu span:after {
	content: '';
	position: absolute;
	top: 8px;
	background-color: #0066FF;
	height: 3px;
	width: 25px;
	transition: 0.3s;
}
.menu.active span { background-color: transparent; }
.menu.active span:before { transform: rotate(45deg);top: 0; }
.menu.active span:after { transform: rotate(-45deg);top: 0; }

/* End */

/* Navigationbar */

.navbar-menu {
    background-color: #F4F4F4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    transform: translateX(-100%);
    transition: 0.5s;
    /*padding-top: 50px; */
    margin-top: 50px;
    
    height: auto;
    z-index: 200;
 }

.navbar-menu.active { transform: translateX(0);transition: 0.5s; }
.navbar-menu .menu-listing { padding: 0;margin: 0;text-align: right; }
/*.menu-listing li { display: inline-block; } */
.menu-listing li a {
	background-color: #F4F4F4;
	color: #262626;
	display: block;
	font-size: 1rem;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	letter-spacing: 1px;
	text-decoration: none;
	transition: 0.5s;
	text-align: left;
	text-transform: uppercase;
}

/* .navbar-menu { height: auto;z-index: 1; } */
.menu-listing li { display: block; }

.menu-listing li a:hover { background-color: #ddd;transition: 0.5s; }

