@font-face {
	font-family: fontSansSerif;
	src: url("polices/DejaVuSans-webfont.woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: fontSansSerif;
	src: url("polices/DejaVuSans-Oblique-webfont.woff");
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: fontSansSerif;
	src: url("polices/DejaVuSans-Bold-webfont.woff");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: fontSansSerif;
	src: url("polices/DejaVuSans-BoldOblique-webfont.woff");
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: fontSerif;
	src: url("polices/DejaVuSerif-BoldItalic-webfont.woff");
	font-weight: bold;
	font-style: italic;
}

* {
	box-sizing: border-box;
}
body {
	font-family: fontSansSerif, sans-serif;
	font-size: 17px;
	line-height: 1.3em;
	padding: 0;
	margin: 0;
	color: white;
}

h1 {
	font-size: 1.7em;
	line-height: 1.2em;
	text-align: center;
	font-weight: bold;
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	border-bottom: 1px solid white;
}
h2 {
	font-size: 1.1em;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	font-style: italic;
	margin: 40px 0;
	padding: 0;
}
h3 {
	font-size: 1.0em;
	line-height: 1.2;
	/*font-weight: bold;*/
	/*text-align: center;*/
	margin: 5px 0;
	padding: 0 0 5px 0;
	/*border-bottom: 1px solid white;*/
}
h4 {
	font-size: 1.0em;
	line-height: 1.2;
	font-weight: bold;
	margin: 5px 0;
	padding: 0;
}
.strongNormal {
	font-weight: normal;
}

a {
	text-decoration: none;
	font-weight: bold;
	font-style: italic;
	color: white;
}
a:hover {
	text-decoration: underline;
	color: white;
}
.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}
.underline {
	text-decoration : underline;
}
.center {
	text-align: center;
}
.alert {
	color: #b93a3a;
	font-weight: bold;
}
.bottomShadow {
	position: relative;
	z-index: 0;
	top: 83px;
	max-width: 990px;
	height: 15px;
	margin: 0 auto;
	background-image: url("../images/bottom-shadow.png");
	background-repeat: no-repeat;
	background-size: 100% 15px;	
}


header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	min-height: 82px;
	max-height: 100%;
	overflow: auto;
	background-color: white;
	padding: 0;
	margin: 0;
}


nav {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	margin: 0 auto;
	max-width: 990px;
}
.logoSlogan {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.logo {
	border-radius: 10px 10px 10px 0;
	border: 1px solid black;
}
img {
	display: block;
}
.slogan {
	font-family: fontSerif, serif;
	font-size: 1.9em;
	line-height: 1.0em;
	font-weight: bold;
	font-style: italic;
	margin: 0 10px;
	color: black;
}
.menuButton {
	display: none;
}
.navMenus {
	display: flex;
	flex-direction: row;
	list-style: none;
	padding: 0;
	margin: 0;
}
.menu {
	text-align: center;
	border-top-width: 0px;
}
.menu.active {
	display: inline-block;
}
.menu a {
	transition-duration: 0.4s;
	text-decoration: none;
	font-weight: bold;
	font-style: normal;
	display: block;
	padding: 15px 8px;
	color: black;
	background-color: transparent;
	border-radius: 10px;
}
.menu a:hover {
	background-color: gray;
}


main {
	position: relative;
	z-index: 0;
	top: 83px;
	max-width: 990px;
	margin: 0 auto;
	padding: 10px 10px 20px 10px;
	background-color: black;
	border-radius: 10px;
}


footer {
	position: relative;
	top: 83px;
	font-size: 0.9em;
	color: black;
	background-color: white;
	padding: 10px 0 100px 0;
}
.footerCenter {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 0 10px;
	max-width: 990px;
	margin: 0 auto;
}
.footerMenus {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	order: 1;
	flex: 1;
}
.footerMenus a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	font-style: normal;
	color: black;
	margin: 0;
	padding: 0 0 5px 0;
}
.footerMenus a:hover {
	text-decoration: underline;
}
.footerUp {
	order: 2;
}
.footerUp a {
	display: block;
}
.footerCopyright {
	text-align: right;
	line-height: 1.8em;
	order: 3;
	flex: 1;
}


/*
REQUETE MEDIA @media : REGLES CSS POUR UNE LARGEUR D'ECRAN INFERIEURE A 730 PIXELS
(SMARTPHONES ET PETITES TABLETTES)
*/
@media screen and (max-width: 760px) {
	nav {
		flex-wrap: wrap;
	}
	.menuButton {
		display: block;
	}
	.navMenus {
		width: 100%;
		flex-direction: column;
	}
	.menu {
		display: none;
		text-align: left;
		border-top: 1px solid black;
	}
	.menu.active {
		display: block;
	}
	.menu a {
		border-radius: 0px;
	}

	.footerCenter {
		flex-direction: column;
		align-items: center;
	}
	.footerMenus {
		flex-direction: row;
		justify-content: center;
		order: 2;
		text-align: center;
	}
	.footerMenus a {
		margin: 0 10px;
		padding: 5px 0;
	}
	.footerUp {
		order: 1;
	}
	.footerCopyright {
		order: 3;
		text-align: center;
	}
}
