figure{
	margin: 50px 50px 50px;
}

h1,h2,h3,h4{color:#0091ff;
	font-family:Arial;
}	
h1{color:#0091ff;
	font-weight:bold;
	text-align:center;
}
header p{
	margin: 10px 70px 10px;
}
p{
	text-align:justify;
}

figure{
	text-align:center;
}
body{
	font-family:Arial;
	margin:0;
	background-image: url(images/background.png);
}
section{
	margin: 10px 50px 20px;
	min-height:75vh;
}
figcaption{
	font-weight: bold;
	font-style: italic;
}

/*Navigation dans les pages*/
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 300px;
	background-color: #F1F1F1;
}
nav li a {
	display: block;
	color: #000;
	padding: 8px 16px;
	text-decoration: none;
}
li a:hover {
	background-color: #0091FF;
	color: white;
}


img.bordered{
	border-style: solid;
}

img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*Pour mettre le footer en bas*/
body{ 
	display:flex;
	min-height:100vh;
	flex-direction:column; 
}
footer.pagefooter{
	margin-top:auto;
	background:#91D0FF;
}
div.right{
	float:right;
	width: 50%;
}
div.left{
	float:left;
	width: 50%;
}
div.center{
	justify-content: center;
	align-items: center;
	display:flex;
}
p.footer{
	margin: 10px 50px 10px;
	text-align: right;
}
img.footer{
	margin: 10px 50px 10px;
}

aside {
    padding-left: .5rem;
    margin-left: 40%;
    float: right;
}

/*Nav bar en haut*/
nav ul.top {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #0091FF;
	width: initial;
}
nav ul li.top {
	float: left;
}
nav ul li.right {
	float: right;
}
nav ul li a.top {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}
nav ul li a.current {
	background-color: #0067B5;
}
nav ul li a:hover.top {
	background-color: #0067B5;
}

/*Tableau*/
table {
	border-collapse:collapse;
	width:100%;
 }
th, td {
	border:1px solid black;
}
th {
	background: #DDD;
}
td {
	text-align:center;
	background: #eee;
}
td.good {
	background-color: #7f7;
}
td.bad {
	background-color: #f77;
}