@charset "utf-8";
/* propriétés par défaut (PC)*/

body {
  background-color: lightblue;
  background-size: cover;
}

h2 { 
  background-color: blue;
  color: white;
  font: italic 160% "Trebuchet MS", Verdana, sans-serif;
  text-align: center;
  margin-left: 0;
  width: 100%;
}

#AjaxLoader {
	position: absolute;
	visibility: hidden;
	left: 50%;
	top: 25%;
	background-color: transparent;
	z-index: 2010;
}

#BlocPage {
  width: 960px;
  margin: auto;
}

#MyPopup {
	position: absolute;
	visibility : hidden;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	top: 25%;
	background-color: lightblue;
	z-index: 2000;
}

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

.bloc_flex {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.bloc_titre {
	width: 800px;
	margin: auto;
}

.bloc_contenu {
	background-color: lightblue;
	border-radius: 30px 30px 30px 30px; 
	box-shadow: 5px 5px 15px 10px grey; 
	padding: 10px 10px 10px 10px;
}

.H_center {
	text-align: center;
}

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

.titre1 {  
	font: normal 130%;
	color: black;  
	text-shadow: 0.1em 0.1em 0.2em black;
}

.SimpleListe {
	font-size: 120%;
	font-weight: bold;
	text-align: left;
	line-height: 150%;
}

/*Accordéon*/
.accordion {
	max-width: 100%;
	overflow: hidden;
	padding-left: 20px;
	padding-right: 20px;
}
.accordion ul {
	margin: 0;
}
.accordion li {
	display: block;
}
.accordion label {
	cursor: pointer;
	display: block;
	padding: 0.7em 1em;
	overflow: hidden;
	background: Blue;
	color: white;
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid black;
}
.accordion label:hover {
	background: DarkBlue;
}
.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;
	transition: all 0.25s ease-in-out;
}
.accordion input:checked + .sub > li {
	padding: 0.7em 1em;
	height: 100%;
	opacity: 1;
}
.accordion .article {
	background: Magenta;
}
.accordion .article:hover{
	background: DarkMagenta;
}

/* propriétés pour tablettes */

@media screen and (max-width: 960px) {
	#Logo {
		width: 75px;
		height: auto;
	}
	
	#BlocPage {
		width: auto;
	}
}

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

}
