body{margin:0;}
a{text-decoration:none;color:black;}
/*-------- Bandeau --------*/
#hautPage{
	display: block;
	width: 100%;
	z-index:1;
	position: fixed;
	top:0;
	left:0;
	margin: 0;
	padding: 0;
    text-align: center;
	height:25px;	
	background-color: silver;
}
body > header{
	z-index:2;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
    justify-content: space-between;
	align-items: center;
	background-color: #990077;
	height:50px;
	width: 100%;
	position: absolute;
}
body > header img{
	padding: 10px;
	width: 30px;
	height: 30px;
}
#compte{
	margin: 0;
}
h1, h2{
	color: white;
}
nav a{
	height: 50px;
	color: white;
}
nav, nav > ul{
	margin: 0;
	padding: 0;
	height: 50px;
	list-style-type: none;	
	z-index:3; /* Pour que les articles positionnés en position relative ne recouvre pas le menu */	
	display:flex;
}
nav > ul > li{
	display:flex;
	align-items: center;
}
nav > ul > li > ul{
	display:none;
	flex-direction: column;	
	width: 80%;
	max-width: 400px;
	position: absolute;
	top: 0;
	left: -40px;
	background-color: black;/*couleur de fond du menu */
}
nav > ul > li:hover ul{
	display:flex;
}
nav > ul > li > ul > li > h2{
	text-align: center;
	background-color: #990077;				/* couleur de fond du titre menu en violet */
	margin: 0;
	padding: 10px;
}
#menuPagePrincipale{
	display: flex;
	flex-wrap: nowrap;	
	flex-direction: column;
	padding: 2px;
}
.menuTitreCentral{
	display: flex;
	flex-direction: column;	
	flex-wrap: wrap;
	border: 1px solid #3b3b3b;/* couleur des bordure de chaque partie du menu */	
	margin: 2px;
}
.menuTitreCentral:hover{background-color: #2b2b2b;}
.menuTitreCentral li, .menuTitreCentral > a{
	margin: 0;
	padding: 5px 0;
	display: flex;	
	width: 100%;
	align-items: center;  /*aligne les logo et les texte*/
	flex-wrap: wrap;
	justify-content: flex-start;
}
.menuTitreCentral  img{
	width: 20px;
	height: 20px;
	margin-right: 5px;
	padding-left: 30px;	
}

/* -------- Flux d'actualité -------- */
section{
	background-color: #f5f5f5;
	display: flex;
	width:100%;
	flex-wrap: wrap;
	position: absolute;
	top:50px;
}
section h2{
	text-align: center;
	width: 100%;
	height: 30px;
	margin: 0;
	background-color: black;
	color: White
}
section article{
	display: flex;
	flex-direction: column;
	width:95%;
	min-height: 110px;
	margin: 10px auto;
	padding: 5px 0;
	background-color: white;
	border-radius: 5px;
	border: 1px solid #cbcbcb;
	box-shadow: 2px 2px 2px #cbcbcb;
}

/* -------- Footer --------- */
body > footer{
	margin: 0;
	padding: 5px;	
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: silver;	
	color: white;
}
body > footer > a{
	text-decoration: none;
	color: white;
}
/* -------- Compatibilité écran --------- */
@media screen and (min-width: 1024px){section article{width: 46.8%;}}/*2 articles par ligne*/
