body
{
   margin: auto; /* Pour centrer notre page */
   margin-top: 0px; /* Pour coller avec le haut de la fenêtre du navigateur.  */
   margin-bottom: 0px;    /* Idem pour le bas du navigateur */
   background-color: white; /* Une petite image de fond pour éviter d'avoir un vieux fond blanc :p */
   color: black;
   font-family: Georgia,"Times New Roman", Times, serif;
   width: 70%;
}

#en_tete
{
   width: 100%;
   height: 100px;
   background-image: url("banniere.jpg");
   background-repeat: no-repeat;
   margin-bottom: 0px;
}

#menu
{
   width: 100%; /* Très important : donner une taille au menu */
}


.titre
{
	text-align: center;
	list-style: none;
	padding: 10px;
	z-index: 20;
	background-color: white;
	text-align: center;
	display: block;
	float: left;
	
}


.titre:hover  ul.sous-titre
{
	display:block;
	position: relative;
}

/*background : transparent url("photo2.jpg") repeat; */

.sous-titre
{
	list-style:none;
	display: none;
	z-index: 10;
}


#pied_de_page
{
   padding: 5px;
   clear: both;
   text-align: center;
   color: white;
   background-color: black;
   margin-bottom: 20px;
}

#pied_de_page a
{
	color: grey;
}

#pied_de_page a:hover
{
	color: white
}

#corps
{
	color: black;
	border: 5px solid gray;
	margin-left: 0px; /* Une marge à gauche pour pousser le corps, afin qu'il ne passe plus sous le menu */
    margin-bottom: 20px; /* Ca c'est pour éviter que le corps ne colle trop au pied de page en-dessous */
    margin-top: 100px;
	padding: 10px; /* Pour éviter que le texte à l'intérieur du corps ne colle trop à la bordure */
	text-align: center;
}

a
{
	color: black;
	text-decoration: none;
}

a:hover
{
	color: grey;
}




