/* Style généraux */
body {
	padding: 0;
	background-color: gray;
	font: 1em Constancia; /*Verdana, Arial, Helvetica, sans-serif;*/
}
body, ha, h2, p {
	margin: 0;
}
div#conteneur {
	width: 940px;
	margin: 20px auto 0 auto;
	padding: 10px;
	background-color: white;
	border-radius: 10px;
}

/* L'en-tête */
header#haut {
	margin: 0 0 10px 0;
	padding: 5px;
	background-color: black;
	border-radius: 10px;
}
#logo {
	/*float: left;*/
}
#logo img {
	width: 150px;
	height: 75px;
}
header#haut h1, header#haut h2 {
	color: white;
}
header#haut h1 {
	float: left;
}

/* La barre de navigation */
nav#navigation {
	margin: 0 0 10px 0;
	padding: 5px;
	background-color: black;
	border-radius: 10px;
	float: right;
	/*display: table-cell;
	vertical-align: middle;*/
}
nav#navigation p {
	color: white;
}
nav#navigation a {
	text-decoration: none;
	color: white;
}

/* Le contenu principal */
#intro {
	width: 50%;
	position: relative;
	/*float: left;*/
	height: 230px;
	padding: 10px;
	background: white;
	
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
	
	/*margin: 0 auto;*/
	-moz-border-radius: 5px;
	border-radius: 5px;
	/*border-width: 1px;*/
}
#intro img {
	width: 100%;
	/*height: 100%;*/
}
.connexion {
	background-color: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 20px 20px 20px 20px;
	margin: 20px auto 0 auto;
	display: flex;
	align-items: center;
	/*-moz-border-radius: 5px;*/
	border-radius: 10px;
	width: 50%;
	clear:both;
}
.connexion form {
	margin: 0 auto;
}
.connexion legend {
	font-weight: bold;
}
.connexion label {
	/*text-align: left;*/
	float: left;
	line-height: 1.5em;
	border-width: 1px;
}
.connexion input {
	/*text-align: right;*/
	float: right;
	line-height: 1.5em;
}
.connexion p {
	padding: 2px;
	margin: 20px auto;
	
	/*vertical-align: middle;*/
}


/*
.connexion table, th, td {
	border-width: 0px;
	text-align: center;
	
}
.connexion th {
	color: gray;
}
.connexion a:link {
color:gray;
text-decoration:none;
}
.connexion a:visited {
color:gray;
text-decoration:none;
}
.connexion a:hover {
color:black;
text-decoration:none;
}
*/
.presentation {
	background-color: white;
	font-size: 1.25em;
	color: gray;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 20px 20px 20px 20px;
	margin: 20px auto 50px auto;
	/*display: flex;*/
	align-items: center;
	/*-moz-border-radius: 5px;*/
	border-radius: 10px;
	width: 50%;
	clear:both;
}

/* La colonne latérale */


/* Le pied de page */

footer#piedDePage {
	width: 940px;
	margin: 20px auto 0 auto;
	padding: 10px;
	border-radius: 10px;
	background-color: black;
	clear: both;
}
footer#piedDePage p {
	color:white;
	text-align: center;
	font-size: .75em;
}
footer#piedDePage a {
	color:white;
}

/*id */

#haut {
	
}



#FooterThree {
	
}
#FooterTwo {
	
}
/* class */

.container {
	
}
.footer_left {
	
}

.message {
	color: red;
}

/* Affichage pour grand écrans */
@media only screen and (min-width: 1176px) {
	
}

/* Affichage pour les tablettes */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	div#conteneur {
		width: 90%;
	}
	footer#piedDePage {
		width: 90%;
	}
	#intro {
		width: 470px;
	}
	.connexion {
		width: 50%;
	}
	.presentation {
		width: 50%;
	}
}

/* Affichage mobile en porttrait 320px */
@media only screen and (max-width: 767px) {
	div#conteneur {
		width: 90%;
	}
	footer#piedDePage {
		width: 90%;
	}
	nav#navigation a {
		display:block;
		clear: both;
	}
	#intro {
		display: none;
	}
	.connexion {
		width: 80%;
	}
	.presentation {
		width: 80%;
	}
}

/* Affichage mobile en paysage 480px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	div#conteneur {
		width: 90%;
	}
	footer#piedDePage {
		width: 90%;
	}
	#intro {
		width: 100%;
	}
	.connexion {
		width: 70%;
	}
	.presentation {
		width: 70%;
	}
}