body
{
   width: 760px;
   margin: auto;  /*Pour centrer notre page */
   margin-top: 20px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
   margin-bottom: 20px;    /* Idem pour le bas du navigateur */
   background-color: #a40000;
   color: yellow;
}
a:visited
{
   color: green;
}
#en_tete
{
width:758px;
height:100px;
background-image: url("logo.PNG");
background-repeat: no-repeat;
margin-bottom: 10px;
}
#menu
{
   float: left; /* Le menu flottera à gauche */
   width: 180px; /* Très important : donner une taille au menu */
   background-image: url("fondcorps.PNG");
   background-repeat: repeat-x;
   background-color: #800000;
}
#menu ul /* Toutes les listes à puces se trouvant dans un menu */
{
   list-style-image: url("puce.png"); /* On change l'apparence des puces */
   padding: 0px; /* Tous les côtés ont une marge intérieure de 0 pixels */
   padding-left: 20px; /* ... mais on modifie ensuite la marge de gauche, donc celle-là fera finalement 20 pixels */
   margin: 0px; /* Idem pour margin, ça nous évite d'avoir à en écrire 4 (margin-left, margin-right...) */
   margin-bottom: 5px; /* Même chose que tout à l'heure, on modifie ensuite juste margin-bottom, mais tous les autres sont à 0px */
}
#menu a /* Tous les liens se trouvant dans un menu */
{
   color: #B3B3B3;
}

#menu a:hover /* Quand on pointe sur un lien du menu */
{
   background-color: #B3B3B3;
   color: black;
}
#corps
{
margin-left:190px ;
margin-bottom:20px;
padding:5px;
background-image: url("fondcorps.PNG");
background-repeat: repeat-x;
background-color: #800000;
}
#corps h2 /* Tous les titres h2 du corps */
{
   height: 30px;

   background-image: url("h2.PNG"); /* Une petite image de fond sur les titres h2 */
   background-repeat: no-repeat; /* L'image ne se répètera pas, elle sera à gauche du titre */

   padding-left: 30px;
   text-align: left;
}
#pied_de_page
{
   padding: 5px;

   text-align: center;
   background-color: #800000;
   background-image: url("fondcorps.PNG");
   background-repeat: repeat-x;
}
.tm
{
font-variant: small-caps;
}
.intro
{
font-variant: small-caps;
text-align: center;
}
.flottantdroite
{
float: right;
}
.flottantgauche
{
float: left;
}
.important
{
text-decoration: blink;
font-weight: bold;
}
.petitimportant
{
font-weight: bold;
font-size: 17px;
}
.gros
{
font-size: 22px;
}
.moyen
{
font-size: 19px;
}

