html{
	font: 400 18px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
}
body{
	margin: 0; /*8pixels en natif navigateurs*/
	width:100%;
	min-width:840px;
}
#header{
	height:150px; 
	background-color:#c6c4a8;
	background-image:url("../images/image_header.png");
	background-repeat: no-repeat;
	background-position: 11% center; 
}
#bienvenue_user{
	float: right;
	width:310px;
	margin: 50px 50px 0 0;
	color:#000;
}
#erreur_connexion{
	color: red;
	font-weight: bold;
	margin-left:40%;
	margin-top: 100px;
	
}
.bouton_header{
	float:left;
	padding: 5px;
	margin-right: 5px;
	color:#000;
	background-color: #e3ba41;
	border: 1px solid grey;
	border-radius: 5px;
}
.bouton_header.connexion,
.bouton_header.deconnexion{
	width:105px;

}
.bouton_header.retourpageacc{
	width:165px;
}
.bouton_header.voiralbums{
	width:125px;
}


#content{
	width:75%;
	margin:0 auto;
}
#text_intro{
	margin: 50px 0;
}
.outline{
	margin:50px 0;
	padding: 20px;
	background: #DDD;
}
#menu_annees{
	padding-left:10%;
}
.bouton_annee{
	background-color:#e3ba41;
	color:#000;
	margin-right: 4px;
	margin-top: 8px;
	float: left;
	text-align: center;
	padding:10px;
    border-bottom: 3px solid #c6c4a8; /*MEMO bordure même si pas affichée sinon la hauteur varie et problème avec float:left*/
	height:20px;
	padding:10px;
	border-top-left-radius:15px;
	border-top-right-radius:15px;
}
.bouton_annee.annee_affichee{ /*ATTENTION pas de blanc avant .deuxiemeclasse*/
	background-color:#FFF;
	border-bottom: 3px solid #c6c4a8;
}
.bouton_header:hover,
.bouton_annee:hover{
	color:#FFF;
}

#liste_albums{
	clear: left;
	margin-left:10%;
}
.album{
    margin:20px 0; 
	height:320px;
	width:250px;
	float:left;
	text-align:center;
}
.album a{
	color: #000;
	font-size: 15px;
	font-weight: bold;
}	
.image_album {
	float: left;
	height:240px; 
	width:240px;
	margin: 5px 15px;
}

#formulaire_login{
	background-color:#c6c4a8;
	padding: 20px;
	width: 75%;
	margin: 50px auto;
}
.input_data{
	margin-bottom:20px;
}
	
input{
	font-size:18px;
}
a {
	text-decoration: none;
}