/*Insertion d'un type de police personnalisé*/
@font-face {
	font-family:'BebasNeue'; /*Son nom*/
	src: url('BebasNeue.otf') format(opentype);/*Son emplacement par rapport au fichier style.css et son extension */
}
body {
	background-image: url(../../../travailEleves/IsabeauElsaAngela/repeat.jpg);
	background-color: #f9f2e8;
	margin:0
}
header {
	background-color: black;
	/*Réglage de l'opacité à 0.8 pour différents navigateurs*/
 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	-khtml-opacity: 0.7;
	opacity: 0.7;
	color: white;
	/*Positionnement*/
position: absolute;
	left:0px;
	top: -20px;
	height:10%;
	width:100%;
	text-align: center;
}
nav {
	padding: 10; /*Espace entre les liens */
	margin: 0;
	text-align: center; /*Centrer le menu*/
}
nav li {
	display: inline-block; /*Suppression des styles de puce par défaut et affichage horizontal */
	list-style: none; /*Précaution pour IE */
}
nav a {
	text-decoration:none; /*Suppression des styles de lien par défaut  */
	font-family: 'BebasNeue';/*Utilisation de la police personnalisée*/
	font-size: 1.6em;
	color:#d6d6d6;
	display: inline-block;
	margin-top:10px;
	padding-top:10px;
	margin-left:30px;/*Ajout d'espace entre les liens*/
	margin-right: 30px;
}
nav a:hover {
	color: #fff; /*changer la couleur de la police au survol par la souris */
}
section {
	position: relative;
	left:0px;
	top:50px;
	height:100%;
	width:80%;
	font-family: Verdana;
	color: #3e4741;
	margin-left:auto;
	margin-right:auto;
	padding:10px 0px 0px 10px;
}
footer {
	background-color: rgba(0, 0, 0, 0.5);
	position:fixed;
	bottom:0;
	left:0;
	height:5%;
	width:100%;
	font-family:Arial, Sans-serif;
	font-size:small;
	text-align: center; /*Texte centré*/
}
.lien {
	text-decoration: none;
	color: #3e4741;
}
.lien:hover {
	color: #2b312d;
}
#image {
	text-align: center;
}
