a, a:hover { 
	text-decoration: none /* les liens ne sont pas soulignés */ 
}
body {
  background-color: rgba(240,224,159,1); /* beige */ 
}
/* CONTENEUR */
/* taille 1 */
@media (max-width: 549px) {
body {
  background-color: rgba(251,252,250,1); /* beige */ 
}
#conteneur {	
  width: 100%;
  background-color: rgba(251,252,250,1); /* blanc */ 
}
}
/* taille 2 */
@media (min-width: 550px) and (max-width: 749px) {
#conteneur {
  width: auto; 
  max-width: 1000px;
  margin: 0 auto 20px auto; /* haut droit bas gauche */
  background-color: rgba(251,252,250,1); /* blanc */ 
}
}
/* taille 3 */
@media (min-width: 750px) {
#conteneur {
  width: auto; 
  max-width: 1500px;
  margin: 0 auto 20px auto; /* haut droit bas gauche */
  background-color: rgba(251,252,250,1); /* blanc */ 
  box-shadow: 5px 8px 10px 10px rgba(120, 120, 120, 0.4); 
}
}
/* HEADER */
header {
    position: relative;	
	width: auto; 
	height: auto;
}		
/* BANDEAU puis LOGO */
/* taille 1 */
@media (max-width: 549px) {
header {
	height: 181px;
    background-color: rgba(126,180,252,1); /* bleu */
}		
#image-bandeau img {
	display: none;
}
}			
/* taille 2 */
@media (min-width: 550px) and (max-width: 749px) {
#image-bandeau img {
	width: 100%; 
	height: auto; 
	min-height: 181px;
}		
}
/* taille 3 */

@media (min-width: 750px) {
#image-bandeau img {
	width: 100%; 
	height: auto;
	min-height: 181px;	
}
}
#logo img { 
	position: absolute; 
	left: 10px; 
	top: 10px; 
	z-index: 2
	src:url('../images/logo.png')
	width: 100%; 
	height: auto; 
}
	
/*MENU */

.navigation1 {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  word-wrap: break-word;
  align-items: center;
  position: relative;
  line-height: 1.618;
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", "Luxi Sans", sans-serif;  
  text-transform: uppercase;		
  font-size: 15px;
  font-style: italic;
  background-color: rgba(126,180,252,1); /* fond de la barre logo + menu bleu */
}
.navigation1 > .top-nav-label {
  flex: 0 0 auto; /* capacité d'un élément flexible à modifier ses dimensions afin de remplir l'espace disponible de son conteneur. */
}

.main-navigation {
  display: none;
  flex: 1 0 100%; /* capacité d'un élément flexible à modifier ses dimensions afin de remplir l'espace disponible de son conteneur. */
}

.main-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
/* barre horizontale contenant les items du menu ordi */
.main-navigation .menu {
  position: relative;
  width: 100%;
  background-color: rgba(126,180,252,1); /* bleu */
}

.main-navigation .menu::before {
  position: absolute;
}

.main-navigation .menu::after {
  position: absolute;
}

.main-navigation .menu .menu-item {
  position: relative;
}

.main-navigation .menu .menu-item a {
  background-color: rgba(126,180,252,1);/* fond menu et sous-menu portable bleu */
  border: 0.0625rem solid #dcdcdc; /* bordures menu et sous-menu portable */
  color:rgba(255,255,255,1);/* police menu et sous-menu avec liens tous formats */
  text-shadow:0 3px 4px rgba(0, 0, 0, 0.5);/* ombres */
  display: block;
  padding: 0.809rem 1.618rem;
  text-decoration: none;  
}

/* majuscules sans ombrages portable */
@media (max-width:780px){ 
.main-navigation .menu .menu-item a {
  text-shadow:0 0 0;/* ombres */
}
}

/* fond liens portable si souris dessus */
.main-navigation .menu .menu-item a:hover,
.main-navigation .menu .menu-item a:focus {
  background-color:rgba(255,255,255,1); /* blanc */
  color:rgba(5,148,255,1); /* bleu */
}

.main-navigation .menu .menu-item a:active {
  background-color:rgba(255,255,255,1); /* blanc */  
  color:rgba(164,42,47,1); /* bleu */
}

.main-navigation .sub-menu {
  display: none;
  border-left: 0.1875rem solid rgba(220,220,220,1); /* gris */
  border-right: 0.1875rem solid rgba(220,220,220,1); /* gris */
}

.menu .menu-item-has-children,
.sub-menu .menu-item-has-children {
  position: relative;
}

.main-navigation .menu .menu-item-has-children a {
  padding: 0.809rem 3.4375rem 0.809rem 1.618rem;
}

/* Cacher/Montrer le menu si checkbox est cochée ou non */
.navigation1 > [type="checkbox"]:checked ~ .main-navigation {
  display: block;
}

/* Cacher/Montrer le menu si checkbox est cochée ou non */
.main-navigation [type="checkbox"]:checked ~ ul {
  display: block;
}

/* Boutons de changement de liens */
.top-nav-label {
  cursor: pointer;
  display: block;
  font-size: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.top-nav-label .open-close-menu {
  display: block;
  position: absolute;
  z-index: 99999;
}

.top-nav-label .open-close-menu::before,
.top-nav-label .open-close-menu::after {
  border-radius: 0.1875rem;
  content: "";
  display: block;
  position: absolute;
}

/* Position du bouton hamburger */
.navigation1 > .top-nav-label {
  position: relative;
  right: 0.5rem;
  left: 0.5rem;
  top: 0;
  height: 2.5rem;
  width: 3rem;
  border-radius: 0.1875rem;
}

.navigation1 > .top-nav-label .open-close-menu {
  background:rgba(255,255,255,1);
  border-radius: 0.1875rem;
  height: 0.25rem;
  left: 0.1875rem;
  right: 0.1875rem;
  top: 1.125rem;
  transition: 0.25s ease-in-out 0s;
}

.navigation1 > .top-nav-label .open-close-menu::before,
.navigation1 > .top-nav-label .open-close-menu::after {
  background-color:rgba(255,255,255,1);
  height: 0.25rem;
  left: 0;
  transition-duration: 0.3s, 0.3s;
  width: 100%;
}

.navigation1 > .top-nav-label .open-close-menu::before {
  top: -0.6875rem;
  transform-origin: top;
}

.navigation1 > .top-nav-label .open-close-menu::after {
  bottom: -0.6875rem;
  transform-origin: bottom;
}

/* animation hamburger */
.navigation1 > [type="checkbox"]:checked ~ .top-nav-label .open-close-menu {
  background: none;
  transition-delay: 0s, 0.3s;
}

.navigation1
  > [type="checkbox"]:checked
  ~ .top-nav-label
  .open-close-menu::before,
.navigation1
  > [type="checkbox"]:checked
  ~ .top-nav-label
  .open-close-menu::after {
  left: 0.125rem;
  transition-delay: 0s, 0.3s;
}

.navigation1
  > [type="checkbox"]:checked
  ~ .top-nav-label
  .open-close-menu::before {
  top: 0;
  transform: rotate(45deg);
}

.navigation1
  > [type="checkbox"]:checked
  ~ .top-nav-label
  .open-close-menu::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* bouton hamburger hover/focus/active */
.navigation1 > .top-nav-label:hover,
.navigation1 > input[type="checkbox"]:focus ~ .top-nav-label,
.navigation1 > input[type="checkbox"]:hover ~ .top-nav-label {
  background:rgba(5,148,255,1);/* fond bouton hamburger actif */
}

.navigation1 > .top-nav-label:hover .open-close-menu,
.navigation1 > .top-nav-label:hover .open-close-menu::after,
.navigation1 > .top-nav-label:hover .open-close-menu::before,
.navigation1 > input[type="checkbox"]:focus ~ .top-nav-label .open-close-menu,
.navigation1
  > input[type="checkbox"]:focus
  ~ .top-nav-label
  .open-close-menu::before,
.navigation1
  > input[type="checkbox"]:focus
  ~ .top-nav-label
  .open-close-menu::after,
.navigation1 > input[type="checkbox"]:hover ~ .top-nav-label .open-close-menu,
.navigation1
  > input[type="checkbox"]:hover
  ~ .top-nav-label
  .open-close-menu::before,
.navigation1
  > input[type="checkbox"]:hover
  ~ .top-nav-label
  .open-close-menu::after {
  background:rgba(239,239,239,1); /* couleurs traits hamburger souris dessus */
}

.navigation1
  > input[type="checkbox"]:checked
  ~ .top-nav-label:hover
  .open-close-menu,
.navigation1
  > input[type="checkbox"]:checked:focus
  ~ .top-nav-label
  .open-close-menu,
.navigation1
  > input[type="checkbox"]:checked:hover
  ~ .top-nav-label
  .open-close-menu {
  background: none;
}

/* position des boutons plus/moins */
.main-navigation .menu-item-has-children > .top-nav-label {
  position: absolute;
  right: 0.0625rem;
  top: 0.0625rem;
  height: 3.3125rem;
  width: 3.3125rem;
}

.main-navigation .menu-item-has-children > .top-nav-label .open-close-menu {
  height: 100%;
  width: 100%;
}

.main-navigation
  .menu-item-has-children
  > .top-nav-label
  .open-close-menu::after,
.main-navigation
  .menu-item-has-children
  > .top-nav-label
  .open-close-menu::before {
  background:rgba(255,255,255,1); /* couleur du signe plus/moins souris non dessus */ 
  transition: transform 0.25s ease-out;
}

.main-navigation
  .menu-item-has-children
  > .top-nav-label
  .open-close-menu::before {
  height: 50%;
  left: calc(50% - 0.1875rem / 2);
  top: 25%;
  width: 0.1875rem;
}

.main-navigation
  .menu-item-has-children
  > .top-nav-label
  .open-close-menu::after {
  height: 0.1875rem;
  left: 25%;
  top: calc(50% - 0.1875rem / 2);
  width: 50%;
}

.main-navigation .menu-item-has-children a:hover ~ .top-nav-label,
.main-navigation .menu-item-has-children a:focus ~ .top-nav-label,
.main-navigation .menu-item-has-children a:active ~ .top-nav-label,
.main-navigation .menu-item-has-children:focus-within a ~ .top-nav-label {background:rgba(164,42,47,1); /* fond du +/- si souris sur item */
}

/* animation du bouton plus/moins */
.main-navigation
  [type="checkbox"]:checked
  ~ .top-nav-label
  .open-close-menu::before {
  transform: rotate(90deg);
}

.main-navigation
  [type="checkbox"]:checked
  ~ .top-nav-label
  .open-close-menu::after {
  transform: rotate(180deg);
}

/* animation du bouton plus/moins si hover/focus/active */
.main-navigation .menu-item-has-children > .top-nav-label:hover {
  background:rgba(126,180,252,1);
}

.main-navigation
  .menu-item-has-children
  input[type="checkbox"]:focus
  ~ .top-nav-label {
  background:rgba(126,180,252,1);
}

.main-navigation
  .menu-item-has-children
  > .top-nav-label:hover
  .open-close-menu::after,
.main-navigation
  .menu-item-has-children
  > .top-nav-label:hover
  .open-close-menu::before,
.main-navigation
  .menu-item-has-children
  input[type="checkbox"]:focus
  ~ .top-nav-label
  .open-close-menu::before,
.main-navigation
  .menu-item-has-children
  input[type="checkbox"]:focus
  ~ .top-nav-label
  .open-close-menu::after {
  background:rgba(239,239,239,1);
}

/* Hide and place checkbox over the toggle buttons */
.navigation1 input[type="checkbox"] {
  cursor: pointer;
  display: block;
  opacity: 0;
  position: absolute;
  z-index: 2;
}

.navigation1 > input[type="checkbox"] {
  right: 0.5rem;
  top: 2.75rem;
}

.navigation1 .menu-item-has-children input[type="checkbox"] {
  right: 1rem;
  top: 1rem;
}

/* Display the right label if checkbox checked */
.navigation1 input[type="checkbox"] + .top-nav-label .close-menu,
.navigation1 input[type="checkbox"]:checked + .top-nav-label .open-menu {
  display: none;
}

.navigation1 input[type="checkbox"]:checked + .top-nav-label .close-menu,
.navigation1 input[type="checkbox"] + .top-nav-label .open-menu {
  display: block;
}

@media only screen and (min-width: 64em) {
  .navigation1 input[type="checkbox"],
  .navigation1 .top-nav-label {
    display: none;
  }
/* Largeur occupée par les items du menu dans la bande */
  .main-navigation {
    display: block;
    flex: 1 0 100%;
    max-width: 100%;
  }

  .main-navigation .menu {
    border: none;
    display: flex;
    justify-content: center;
  }

  .main-navigation .menu::before,
  .main-navigation .menu::after {
    display: none;
  }

  .main-navigation .menu > .menu-item {
    margin-left: 0.3125rem;
  }

  .main-navigation .menu .menu-item a {
    background:rgba(255,255,255,1);
    border: none;
    background-color:rgba(126,180,252,1); /* Fond des items du menu souris non dessus */
    padding: 0.4045rem 0.809rem;
  }

  .main-navigation .menu .menu-item a:hover {
    color:rgba(126,180,252,1); /* Police des items du menu ordi souris dessus */
    background-color:rgba(255,255,255,1); /* Fond des items du menu ordi souris dessus */
  }

  .main-navigation .menu .menu-item a:active {
    color:rgba(255,255,255,1);
    text-decoration: none;
  }

  .main-navigation .menu-item-has-children > .top-nav-label {
    position: absolute;
    right: 0;
    top: 0;
    height: 2.5625rem;
    width: 2.5625rem;
  }

  .main-navigation .menu-item-has-children a:hover ~ .top-nav-label,
  .main-navigation .menu-item-has-children a:focus ~ .top-nav-label,
  .main-navigation .menu-item-has-children a:active ~ .top-nav-label,
  .main-navigation .menu-item-has-children:focus-within a ~ .top-nav-label {
    background: rgba(255,255,255,1);
  }

  .main-navigation .menu .menu-item-has-children a {
    padding: 0.4045rem 0.809rem;
  }

  .main-navigation .menu .menu-item-has-children > a::after {
    display: inline-block;
    content: "\25BC";
    margin-left: 0.4045rem;
    text-decoration: none;
    position: relative;
  }

  /* Show submenu on hover/focus */
  .main-navigation .menu-item-has-children > a:hover ~ ul,
  .main-navigation .menu-item-has-children:hover > a ~ ul,
  .main-navigation .menu-item-has-children > a ~ ul:hover,
  .main-navigation .menu-item-has-children > a:focus ~ ul {
    display: block;
    z-index: 999;
    pointer-events: auto;
  }

  /* Same rules - Focus-within not supported by Edge/IE. Unsupported selectors cause the entire block to be ignored, so we must repeat all styles separately. */
  .main-navigation .menu-item-has-children:focus-within > a ~ ul {
    display: block;
    z-index: 999;
  }

  .main-navigation .sub-menu {
    min-width: 100%;
    position: absolute;
    border: 0.0625rem solid #dcdcdc;
  }

  .main-navigation .sub-menu::before {
    border-bottom: 0.5625rem solid #dcdcdc;
    border-left: 0.5625rem solid transparent;
    border-right: 0.5625rem solid transparent;
    border-top: 0 solid #dcdcdc;
    content: "";
    left: 30%;
    position: absolute;
    top: -0.5625rem;
  }

  .main-navigation .sub-menu::after {
    border-color: #fff transparent;
    border-style: solid;
    border-width: 0 0.5rem 0.5rem;
    content: "";
    left: calc(30% + 0.0625rem);
    position: absolute;
    top: -0.4375rem;
  }

  .main-navigation .sub-menu .sub-menu::before,
  .main-navigation .sub-menu .sub-menu::after {
    display: none;
  }

  .main-navigation .sub-menu .menu-item-has-children > a::after {
    content: "\25C4";
    vertical-align: top;
  }

  .main-navigation .sub-menu ul {
    left: -100%;
    top: 0;
    max-width: 100%;
  }
}

@media only screen and (min-width: 64em) and (any-pointer: coarse) {
  .main-navigation .menu .menu-item-has-children a {
    padding-right: 3rem;
  }

  .navigation1 .menu-item-has-children .top-nav-label {
    display: block;
  }

  .navigation1 .menu-item-has-children input[type="checkbox"] {
    display: block;
    right: 0.625rem;
    top: 0.625rem;
  }

  .main-navigation .menu-item-has-children > a:focus ~ ul,
  .main-navigation
    .menu-item-has-children
    > input[type="checkbox"]:not(:checked):focus
    ~ ul {
    display: none;
  }

  .main-navigation .menu .menu-item-has-children > a::after,
  .main-navigation .sub-menu .menu-item-has-children > a::after {
    display: none;
  }
}

@media only screen and (min-width: 100em) {
  .main-navigation .sub-menu ul {
    left: 100%;
    top: 0;
    max-width: 100%;
  }

  .main-navigation .sub-menu .menu-item-has-children > a::after {
    content: "\25BA";
  }
}
/* CENTRE-PAGE taille 1  */
@media (max-width: 549px) {
#centre_page {
  width: 100%;
  height: auto;
  min-height: 550px;  
}
article {
  margin: 2% 2% 2% 2%; /* haut droit bas gauche */
  width: 96%; 
  height: auto;  
}
aside {
  margin: 2% 2% 2% 2%; /* haut droit bas gauche */
  padding: 0; /* haut droit bas gauche */      
  width: 96%; 
  height: auto;
}
}
#centre_page aside img {
	width: 100%; 
	height: auto;
	display: flex;
}	
/* CENTRE-PAGE taille 2 et 3  */
@media (min-width: 550px) {
#centre_page {
  clear: both; 
  width: 100%;
  height: auto;
  min-height: 400px;
}
article {
  float: left; 
  margin: 2% 2% 2% 2%; /* haut droit bas gauche */
  width: 61%; /* largeur partie gauche de la page */
  height: auto;  
}
aside {
  float: left; 
  margin: 55px 2% 2% 2%; /* haut droit bas gauche */
  width: 31%; /* largeur partie droite de la page */
  height: auto;
}
}
/* ~~ BARRE-BASSE ~~ */

footer, footer a {
  clear: both; 
  width: 100%;
  height: auto;
  max-height: 30px;  
  font-family: Verdana,Helvetica,sans-serif;
  color: rgba(251,252,250,1); /* blanc */
  background-color: rgba(126,180,252,1); /* bleu */     
}
#copyright {
  float: left; 
  width: 60%;
  padding-left : 2%;
  padding-bottom : 2px;
  font-size: 0.9em;      
  text-align: left;
  background-color: rgba(126,180,252,1); /* bleu */         
}	
#mentions_legales {
  float: right; 
  width: 36%;
  padding-right : 2%;
  padding-bottom : 2px;
  font-size: 0.9em;    
  text-align: right;
  background-color: rgba(126,180,252,1); /* bleu */         
}	

/* POLICES */
/* police titre de page */
/* taille 1 */
@media (max-width: 549px) {
h1 {
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", "Luxi Sans", sans-serif;
  font-size: 1.1em;
  font-style: italic;
  color: rgba(130,95,55,1); /* marron */;
  text-align: justify;
  padding-bottom: 20px;
}
}
/* taille 2 */
@media (min-width: 550px) and (max-width: 749px) {
h1 {
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", "Luxi Sans", sans-serif;
  font-size: 1.2em;
  font-style: italic;
  color: rgba(130,95,55,1); /* marron */;
  text-align: justify;
  padding-top: 20px;
  padding-bottom: 20px;
}
}
/* taille 3 */
@media (min-width: 750px) {
h1 {
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", "Luxi Sans", sans-serif;
  font-size: 1.4em;
  font-style: italic;
  color: rgba(130,95,55,1); /* marron */;
  text-align: justify;
  padding-top: 20px;
  padding-bottom: 20px;
}
}
/* police intermédiaire (page contact droite) */
h2 {
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", "Luxi Sans", sans-serif;
  font-size: 0.9em;
  font-weight: 800;  
  color: rgba(130,95,55,1); /* marron */;
  text-align: left;
}
h2 a:link, h2 a:visited, h2 a:link, h2 a:visited {
  color: rgba(73,110,204,1); /* bleu */; 
  background-color: rgba(251,252,250,1); /* blanc */  
}
h2 a:hover, h2 a:active { 
  color: rgba(251,252,250,1); /* blanc */ 
  background-color: rgba(73,110,204,1); /* bleu */;  
}
/* police contenus */
h3 {
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", "Luxi Sans", sans-serif;
  font-size: 1.1em;
  font-style: italic; 
  font-weight: 500;
  color: rgba(130,95,55,1); /* marron */;
  text-align: left;
}
/* police contenus avec liens */
p a:link, h3 a:visited, h4 a:link, h4 a:visited {
  color: rgba(73,110,204,1); /* bleu */;
  background-color: rgba(251,252,250,1); /* blanc */  
}
/* police contenus avec liens */
p a:hover, h3 a:active, h4 a:hover, h4 a:active {
  color: rgba(251,252,250,1); /* blanc */
  background-color: rgba(73,110,204,1); /* bleu */;
}
p {
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", "Luxi Sans", sans-serif;
  font-size: 0.9em;
  font-style: normal; 
  font-weight: 500;
  color: rgba(130,95,55,1); /* marron */;
  text-align: justify;
  text-indent: 1.3em;
}
/* police contenus avec liens */
p a:link, h3 a:visited, h4 a:link, h4 a:visited {
  color: rgba(73,110,204,1); /* bleu */;
  background-color: rgba(251,252,250,1); /* blanc */  
}
/* police contenus avec liens */
p a:hover, h3 a:active, h4 a:hover, h4 a:active {
  color: rgba(251,252,250,1); /* blanc */
  background-color: rgba(73,110,204,1); /* bleu */;
}