body{
	margin: 0;
	padding: 0;
	font-size: 12pt;
}

header, footer{
	background-color: #568CA8;
	color: white;
	font-size: 14pt;
	padding: 1px;

	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: baseline;
}

h1{
	margin-top: 0;
	margin-bottom: 0;
}

h2{
	color: #264A5C;
	font-size: 28pt;
	text-align: center;
}

h3{
	color: #FF7379;
	font-size: 24pt;
	text-align: center;
}

#menu{
	position: absolute;
	right:0%;
	left:85%;

	text-align: center;
	background-color: #568CA8;

	border-style: solid;
	border-width: 5px;
	border-color: #568CA8;
	border-bottom-left-radius: 10px;
}

#menu h2{
	font-size: 18pt;
	margin-top: 10px;
	margin-bottom: 15px;
	color: white;
}

#menu p, #menu label{
	font-size: 14pt;
	color: white;
}

#header_left, #header_right{
	width: 180px;
}

#header_left img{
	display: block;

	margin-left: auto;
	margin-right: auto;
}

#header_left{
	order : 1;
	padding-left: 10px;
	align-self: center;
}

#header_center{
	order: 2;
	font-size: 30pt;
	align-self: center; 
}

#header_right{
	order: 3;
	padding-right: 10px;
	align-self: center;
}

#header_right ul{
	display: inline-flex;
	margin: 0;
	padding: 0;
}

#header_right li{
	display: inline-block;
	list-style-type: none;

	padding: 10px;	
	padding-bottom: 5px;
	font-size: 18pt;
}

#header_right li:hover{
	background-color: #19313D;
}

#header_right li a{
	color: white;
}

.bouton{
	display: inline-block;
	font-size: 14pt;

	margin-top: 0px;
	margin-bottom: 10px;
	padding: 10px;
}

.bouton a{
	color: white;
}

.bouton:hover{
	background-color: #19313D;
}

#container_body{
	display: flex;
	flex-flow: row wrap;

	align-items: center;

	width: 920px;
	height: 675px;

	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 50px;

	color: #212121;
	background-color: white;

	border-style: solid;
	border-color: white;
	border-width: thin;
	border-radius: 20px;
}

#body_top{
	order: 1;

	width: 920px;
	padding-top: 10px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}

#body_left{
	order : 2;

	display: block;
	text-align: center;

	width: 620px;
	height: 600px;

	padding-left: 30px;
	margin: 0;
}

#body_right{
	order: 3;

	width: 260px;
	text-align: center;
	vertical-align: baseline;
}

#body_right ul{
	display: table-cell;
	list-style-type: none;

	padding: 0;
	margin: 0;
}

#body_right p, label{
	font-size: 16pt;
	margin-top: 5px;
	margin-bottom: 10px;
	color: black;
}

#body_right select{
	font-size: 12pt;
	margin-top: 5px;
	margin-bottom: 10px;

	width: 180px;
}

#body_right input{
	margin-bottom: 50px;
}

.standard{
	width: 900px;

	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	padding-bottom: 20px;

	color: #212121;
	background-color: white;

	border-style: solid;
	border-color: white;
	border-width: thin;
	border-radius: 20px;
}

.standard p{
	text-align: center;
	margin-bottom: 10px;
}

.standard ul, .standard ol{
	text-align: center;
	padding-left: 0px;

	list-style-type: none;
}

.standard a{
	color: black;
}

.standard_article{
	width: 600px;

	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 20px;
	padding-bottom: 20px;

	border-style: solid;
	border-color: black;
	border-width: 2px;
	border-radius: 20px;
}

#liste_jours{
	display: flex;
	justify-content: center;
}

.jour{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	text-align: center;
	list-style-type: none;

	padding-left: 0px;

	background-image: linear-gradient(#0db4dd, #0db4dd);
  	background-repeat: no-repeat;

	transition-property: background-size;
	transition-duration: 0.2s;
	transition-timing-function: ease-in;
	background-size: 100% 0%;
	background-position: 50% 0%;
}

.jour:hover{
	background-size: 100% 100%;
}

.contenu_espace{
	flex: 1 1 0;

	width: 130px;
	padding: 20px 20px;
}

.contenu_colle{
	flex: 1 1 0;

	width: 130px;
}

.contenu_colle:nth-child(1){
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.contenu_colle:nth-child(2){
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.elem_departement{
	padding: 0;
	width: 260px;
}

.departement_bouton{
	display: block;
	color: black;

	padding: 12px 0px;

	background-image: linear-gradient(#EEE, #EEE);
  	background-repeat: no-repeat;

	transition-property: background-size;
	transition-duration: 0.2s;
	transition-timing-function: ease-in;
	background-size: 0% 100%;
	background-position: 0% 50%;
}

.departement_bouton:hover{
	background-size: 100% 100%;
}

figure{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

table{
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;

	table-layout: fixed;
	border-collapse: collapse;
}

tr{
	text-align: center;
	padding: 5px;

	border-style: solid none;
	border-width: 2px;
	border-color: #CCC;
}

td{
	font-size: 11pt;
	width: 55px;
	padding-right: 20px;

	color: #666666;
}

.stat_tab{
	padding: 15px 0px;
}

.info_supp_meteo{
	background-color: #EEE;

	vertical-align: top;
}

dl{
	width: 100%;
	float: left;
	margin: 25px 0;
	padding: 0;
}

dt{
	width: 40%;
	height: 30px;
	margin-left: 2%;
	margin-right: 30%;
	padding-top: 4px;

	float: left;
	text-align: left;
	overflow: hidden;
}

dd{
	width: 20%;
	height: 30px;
	margin-left: 2%;
	padding-top: 4px;

	float: left;
	text-align: right;
	overflow: hidden;
}

form{
	text-align: center;
}

#volet{
	float: left;
	position: fixed;
	margin-top: 3%;		
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;

	background-color: white;

	border-style: solid;
	border-width: 1px;
	border-color: white;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

#volet h2{
	text-align: center;
	font-size: 24pt;
}

@media screen and (min-height: 800px){
	#footer_petit {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
	}
} 

@media screen and (min-height: 1000px){
	#footer_moyen {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
	}
}

footer p, footer h2 {
	margin-top: 5px;
	margin-bottom: 5px;
}

#footer_left, #footer_right{
	width: 300px;
}

#footer_left{
	order : 1;
	padding-left: 10px;
	align-self: center;
}

#footer_center{
	order: 2;
	font-size: 18pt;
	align-self: center; 

	color: white;
}

#footer_right{
	order: 3;
	padding-right: 10px;
	align-self: center;

	text-align: right;
}

#footer_right a{
	font-size: 18pt;
	color: white;
}