@charset "iso-8859-1";
@font-face {
	font-family: "Comic Sans MS";
	src: url('comic.ttf');
}

/* propriétés par défaut (PC)*/

a {
  text-decoration: none;
}

a:hover {  
  text-decoration: underline;
}

body {  
  background: #2DBAFF url(images/degbleu.png) repeat-x center 0;
}

button {
	background-color: lightgrey;
  cursor: pointer;
  width: 150px;
	height: 50px;
}

img {
  margin-top: 0;
  padding-top: 0;
  border: 0;
}

#AjaxLoader {
  position: absolute;
	visibility: hidden;
	width: 100%;
	text-align: center;
	top: 25%;
	background-color: transparent;
	z-index: 2010;
}

#Overlay {
	opacity:.60;
	position: absolute;
	visibility: hidden;
	background-color: #000000;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}

.Popup {
	position: absolute;
	visibility : hidden;
	margin-left: auto;
	margin-right: auto;
	padding: 3px;
	left: 0;
	right: 0;
	top: 10%;
	background-color: lightblue;
	z-index: 2000;
}

.titre1 {  
  font: normal 130% "Comic Sans MS";
  color: white;  
  padding-left: 10px;  
}

.titre2 {  
  font: normal 250% "Comic Sans MS";
  color: darkblue;
  text-decoration: bold;
}
.texte1 {  
  font: bold 100% "Trebuchet MS";
  color: white;
  padding-left: 10px;  
}

.rectangle { 
  -webkit-border-radius: 30px 30px 30px 30px;
  border-radius: 30px 30px 30px 30px; 
  box-shadow: 5px 5px 15px 10px grey;  
  -webkit-box-shadow: 5px 5px 15px 10px grey;
  height: 75px;  
  width: 650px;  
  padding: 10px 20px 10px 15px;  
}

.bloc_flex {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.blocRemonter {
	display: flex;
	justify-content: center;
}

.chapo {
  font-style: italic;
  font-weight: bold;
  font-size: 130%;
  text-align: center;	
}
  
.chapo img {
  max-width: 100%;
}

.chapo label {
  font: normal 150% "Comic Sans MS";
  color: darkblue;
  text-decoration: bold;
}

.pave { 
  border-radius: 30px 30px 30px 30px; 
  box-shadow: 5px 5px 15px 10px grey;  
  height: auto; 
  padding: 10px 10px 10px 10px;
  margin: 10px 30px 10px 30px;
  background: #BBDEFB;
  opacity: 0.8;
  font-size: 120%;
  line-height: 150%;
}

.lignevide {
  display: none;
}

/*Accordéon*/
.accordion {
  max-width: 100%;
  overflow: hidden;
  column-count: 3;
}

.accordion ul {
  margin: 0;
  padding: 0;
}

.accordion li {
  display: block;
}

.accordion label {
  cursor: pointer;
  display: block;
  padding: 0.7em 1em;
  overflow: hidden;
  background: #9932CD;
  color: white;
  font-family: "Arial Black";
  border-bottom: 1px solid black;
  font-size: 130%;
  margin-right: 5%;
}

.accordion label:hover {
  background: #338fff;
}
.accordion input[type="radio"],
.accordion input[type="checkbox"] {
  display: none;
}
.accordion .sub > li {
  overflow: hidden;
  height: 0;
  margin: 0;
  opacity: 0;
  font-size: 0.875em;
  font-weight: bold;
  transition: all 0.25s ease-in-out;
}

.sub a:link, a:visited {
	color: #000060;
}
	
.accordion input:checked + .sub > li {
  padding: 0.7em 1em;
  height: 100%;
  opacity: 1;
}

.sousmenu {
  cursor: pointer;
  display: block;
  padding: 0.7em 1em;
  overflow: hidden;
  background: #9932CD;
  color: white;
  font-family: "Arial Black";
  border-bottom: 1px solid black;
  font-size: 130%;
  max-width: 400px;
  margin: auto;
}

.LignePopup {
  font-size: 0.875em;
  font-weight: bold;
}

/* propriétés pour tablettes */
@media screen and (max-width: 1200px) {

  .accordion {
    column-count: 2;
  }

  .accordion .sub > li, .LignePopup {
    font-size: 1.3em;
  }

  .lignevide {
    line-height: 30%;
    display: block;
  }
}

/* propriétés pour smartphone */
@media screen and (max-width: 480px) {

  .accordion {
    column-count: 1;
  }
  
  .accordion .sub > li, .LignePopup {
    font-size: 1.3em;
  }

  .lignevide {
    line-height: 50%;
    display: block;
  }

  .bloc_flex {
    flex-flow: column wrap;
	align-content: space-between;
	margin: auto;
  }
}

/* propriétés pour l'impression */
@media print {
	.blocRemonter {
		display: none;
	}
	.navigation {
		display: none;
	}
	.sousmenu {
		display: none;
	}
	#volet {
		display: none;
	}
}