@charset "utf-8";
/* CSS Document */
body {
	margin: 0px;
	background-color: purple;
}
#page {
	width: 100%;
	-max-width: 980px;
	min-width: 600px;
	min-height: 700px;
	margin: auto;
	margin-top: 0;
	background-color: orange;
	display: flex;
	flex-direction: column;
	-justify-content: space-around;
	}

#header {
	background-color: #F1F1F1;
	height: 80px;
	margin: 0;
	display: flex;
	justify-content: space-around;
}
#header_box{
	width: 100%;
	margin-left: 12%;
	margin-right: 12%;
	display: flex;
	-background-color: green;
	justify-content: space-between;
}

#nom {
	display: block;
	height: 80px;
	width: 350px;
	background-image: url(data/nom.png);
	background-repeat: no-repeat;
	background-position: left center;
	-background-color: orange;
}
#menu {
	width: 200px;
	-height: 30px;
	-background-color: orange;
	padding: 0;
	margin: 0;
	margin-left: 40px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	-align-items: flex-end;
	align-self: center;
}

#menu li {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	-text-transform: uppercase;
	font-variant: small-caps;
	color: #666;
	font-weight: normal;
}

#menu li a {text-decoration: none;color: #333;}
#menu li a:hover {text-decoration: underline;}
	
#core_column {
	background-color: blue;
	margin: 10px 10%;
	min-height: 700px;
	display: flex;
	flex-flow: column wrap;
	-align-items: flex-start;
}

#core_row {
	background-color: turquoise;
	margin: 10px 10%;
	min-height: 800px;
	display: flex;
	flex-flow: row wrap;
	-justify-content: flex-start;
}

.bloc {
	-margin: 10px 0;
	background-color: red;
}

.marge_10 {
	margin: 0 10%;
}

.barre_80 {
	width: 80%;
	height: 1px;
	align-self: center;
	margin: 10px 0px;
	background-color:#666;
}

.barre_100 {
	width: 100%;
	height: 1px;
	align-self: center;
	margin: 10px 0px;
	background-color:#666;
}

#footer {
	background-color: green;
	height:60px;
	-align-self: flex-end;
}

#footer p {
	text-align: center;
	color: #111;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	
}

body, #page, #core_row, #core_column, #footer, .bloc, .show, .diapo {
	background-color: #f9f9f9;
}