body
{
	background-color:#000;
	color:#fff;
}
#page_entiere
{
	width:900px;
	margin:auto;
	background-color:#555;
	border-radius: 10px;
}
/* MENU DE NAVIGATION **************************************************/
nav
{

}
nav ul
{
    list-style-type: none; /* supprime les puces */
	/*text-align:center;*/
	margin:0;
	padding:0;
	
}
nav li
{
	background-color:#000;
	width:90px;
	height:30px;
	line-height:30px; /* permet de centrer le texte en hauteur */
	border-radius:0 15px 15px 0;
}
nav li a
{
	display:block; /* pour pouvoir donner une largeur et hauteur */
	color:#fff;
	text-decoration:none;
	width:90px;
	height:30px;
	border-radius:0 15px 15px 0;
}

nav li a:hover
{
	color:#000;
	background-color:yellow;
	text-decoration:none;
	padding-left: 20px; /* provoque une avancée du lien par rapport au reste */
}

/* EN-TETE DE LA PAGE ****************************************************/
header
{
	border-radius: 10px 10px 0 0;
	background-color:orange;
}
/* CORPS PRINCIPAL DE LA PAGE *****************************************************/
section
{
	min-height:500px;
}
section h3
{
	margin-left:5px;
}
.images
{
	margin-left:10px;
}
a img
{
	border:0;
}
/* PIED DE PAGE ***********************************************************/
footer
{
	height:100px;
	border-radius: 0 0 10px 10px;
	background-color:red;
}
footer p
{
	text-align:center;
}
footer a
{
	text-decoration:none;
}
.mail
{
	display:block;
	background-color:blue;
	color:red;
	width:120px;
	font-size:1.2em;
}
.mail:hover
{
	color:red;
	display: block;
	width:150px;
	height:40px;
	line-height:40px;
	font-weight:bold;
	text-transform:uppercase;
	border-radius: 0 15px 15px 0;
	background-color:#fff;
	font-size:1em;
}