body
{
width:760px;
margin: auto;
margin-top:20px;
margin-bottom:20px;
background-image: url("fond3.jpg");
color: white;
}
#en_tete
{
   width: 760px;
   height: 123px;
   background-image: url("banniere.jpg");
   background-repeat: no-repeat;
   margin-bottom: 10px;
   margin:auto;
}
#menu
{
   float:left;   
   width: 120px; 
}
.element_menu
{
   background-color: rgb(200,237,245);
   background-repeat: repeat-x;
   border: light solid black;
   margin-bottom: 20px; 
   margin-top: 20px;
   color: green;
   }
.element_menu ul
{
list-style-image: circle; /* On change l'apparence des puces */
   padding: 0px; 
   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 */
}
.element_menu a /* Tous les liens se trouvant dans un menu */
{
   color: blue;
   text-decoration:none;
   text-transform:capitalize;
   font-family: "comic sans ms", arial, serif;
}
.element_menu a:hover /* Quand on pointe sur un lien du menu */
{
   background-color: yellow;
   color: blue;
}
#corps
{
   margin-left: 140px; /* 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 colle trop au pied de page en-dessous */
   padding: 5px; /* Pour éviter que le texte à l'intérieur du corps ne colle trop à la bordure */
   font-family: "comic sans ms", arial, serif;
   text-align: center;
   font-size: large;
   color: white;
}
a
{
text-decoration: underline;
color:yellow; 
}
span
{
color:yellow;
}
h1
{
font-weight:bold;
text-transform: capitalize;
font-size: x-large;
color: lime;
}
.logo
{
display:block;
position:absolute;
left: 1050px;
top: 120px;
}
.mares
{
display:block;
position:absolute;
left: 1080px;
top: 40px;
}
.anmp
{
position:absolute;
left: 1100px;
top:220px;
}
.ffessm
{
position: absolute;
left:1100px;
top:450px;
}
.padi
{
position: absolute;
left:1070px;
top:350px;
}

.plateau
{
float:right;
}
.banc
{
float:left;
}


table /* Le tableau en lui-même */
{
   margin: auto; /* Centre le tableau */
   margin-top:30px;
   border: 4px solid lime; /* Bordure du tableau avec effet 3D (outset) */
   border-collapse: collapse; /* Colle les bordures entre elles */
}
th /* Les cellules d'en-tête */
{
   color: yellow;
   font-family: "comic sans ms", "Arial Black", Times, "Times New Roman", serif;
}
td /* Les cellules normales */
{
   border: 3px solid lime;
   font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
   text-align: center; /* Tous les textes des cellules seront centrés*/
   padding: 5px; /* Petite marge intérieure aux cellules pour éviter que le texte touche les bordures */
}

.asso3
{
float:left;
}





