body
{
   width: 800px;
   margin: auto; /* Pour centrer notre page */
   margin-top: 10px;
   margin-bottom: 10px;
   background-color: white;
   background-repeat: repeat-y;
   background-image: url("Images/motif.png");
   background-position: center;
}

#menu
{
   float: left; /* Le menu flottera à gauche */
   width: 120px; /* Très important : donner une taille au menu */
   text-align: left;
   font-family: Times;
   font-size: 10px;
   color: red;
   margin-top: 40px;
}

#en_tete
{
	margin: auto;
	margin-bottom: 10px;
	height: 120px
}

.navigation {
      margin: 0;
      padding: 0;
      list-style: none;
      background: none;
      color: #fff;
      width: 150px;
      font: 1.1em "Trebuchet MS", sans-serif;
      }
   .navigation a, .navigation span {
      display: block;
      padding: 4px 10px;
      color: #fff;
      text-decoration: none;
      background: #000 url(menu-item.png) left bottom no-repeat;
      }
   .navigation .toggleSubMenu a, .navigation .toggleSubMenu span {
      background-image: url(menu-item.png);
      }
   .navigation .open a, .navigation .open span {
      background-image: url(menu-item.png);
      }
   .navigation a:hover, .navigation a:focus, .navigation a:active {
      text-decoration: underline;
      }
   .navigation .subMenu {
      font-size: .8em;
      background: purple url(subMenu.png) 0 0 repeat-x; /* Carac menu déroulé */
      font-size: .9em;
      margin: 0;
      padding: 0;
      border-bottom: 1px solid #666;
      }
   .navigation ul.subMenu a {
      background: none;
      padding: 3px 20px;
      }
	  
.liste
{
list-style-type: none;
}

/* Le corps */   
#corps
  {
margin-left: 170px;
margin-bottom: 5px;
padding: 5px;
width: auto;
height: auto;
min-height: 500px;
}

.listing
{
margin-left: 100px;
text-decoration: none;
color: black;
}

h4
{
font-size: 25px;
color: red;
}

#pied_de_page
{
   padding: 5px;
   text-align: center;
   color: black;
   background-color: #626262;
   border: 2px solid black;
   font-size: 11px;
}

table /* Le tableau en lui-même */
{
   margin: auto; /* Centre le tableau */
   border: 3px outset grey; /* Bordure du tableau avec effet 3D (outset) */
   border-collapse: collapse; /* Colle les bordures entre elles */
   width: 550px;
}

th /* Les cellules d'en-tête */
{
   background-color: grey;
   color: white;
   font-size: 0.7em;
   font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
   text-align: center;
}

td /* Les cellules normales */
{
   border: 1px solid black;
   font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
   text-align: center; /* Tous les textes des cellules seront centrés*/
   padding: 4px; /* Petite marge intérieure aux cellules pour éviter que le texte touche les bordures */
   font-size: 11px;
   color: black;
}
a.info {
   position: relative;
   color: black;
   text-decoration: none;
}
a.info span {
   display: none; /* on masque l'infobulle */
   font-size: 15px;
}
a.info:hover {
   background: none; /* correction d'un bug IE */
   z-index: 500; /* on définit une valeur pour l'ordre d'affichage */

   cursor: default; /* on change le curseur */
}
a.info:hover span {
   display: inline; /* on affiche l'infobulle */
   position: absolute;

   white-space: normal; /* retour à la ligne */
   top: 30px; /* position infobulle */
   left: 20px;
   width: 150px;

   background: url("Images/motif.png");

   color: black;
   padding: 2px;

   border: 1px solid grey;
}

