/*
Design d'exemple du Site El Caminito
Réalisé par Muriel Bernard

*/

body
{
   width: 800px;
   margin: auto;
   margin-top: 20px;
   margin-bottom: 20px;    
   background-image: url("images_tango/fond_noel7.jpg");
   background-color:#000000;
}

/* L'en-tête */

#en_tete
{
   width: 800px;
   height: 100px;
   background-image: url("images_tango/texte_logo.gif"); 
   background-repeat: no-repeat;
   margin-bottom: 10px;
}


/* Le menu */

#menu
{
   float: left;
   width: 120px;
  font-size: 1.2em;
}
a
{
   text-decoration: none; /* Les liens ne seront plus soulignés */
   color: white; /* Les liens seront en rouge au lieu de bleu */
  
}



.element_menu
{
   background-color: #993399;
   background-image: url("images_tango/caminito.jpg");
   background-repeat: repeat-x;
   border: 2px solid black;
   margin-bottom: 20px;
}

.element_menu2
{
   background-color: #993399;
   background-repeat: repeat-x;
   border: 2px solid black;
   margin-bottom: 20px;
}

/* Quelques effets sur les menus */


.element_menu h3
{    
   color: #B3B3B3;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
    
   text-align: center;
}

.element_menu ul
{
   list-style-image: url("images/puce.html");
   padding: 0px;
   padding-left: 20px;
   margin: 0px;
   margin-bottom: 5px;
}

.element_menu a
{
   color: #B3B3B3;
}

.element_menu a:hover
{
   background-color: #B3B3B3;
   color: black;
}


/* Le corps de la page */

#corps
{
   margin-left: 140px;
   margin-bottom: 0px;
   padding: 5px;
   color: white;
   /* ecriture mauve initiale : #dda4e2*/
   background-color: black;
    /* background-image: url("images_tango/.jpg")*/
   background-repeat: repeat-x;
   border: 2px solid black;
}

#corps h1
{
   color: #993299;
   text-align: center;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
}

#corps h2
{
   color: #B3B3B3;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
   text-align: center;
}
#corps h5
{
   color: #ff7f50;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
}

/* Le pied de page (qui se trouve tout en bas, en général pour les copyrights) */

#pied_de_page
{
   padding: 5px;
   text-align: center;
   color: #fffff0;
   /*background-color: #ff6400;
   background-image: url("images/motif.png");*/
   background-repeat: repeat-x;
   border: 2px #fffff0;
}

caption /* Titre du tableau */
{
   margin: center; /* Centre le titre du tableau */
   font-family: Arial, Times, "Times New Roman", serif;
   font-weight: bold;
   font-size: 1.2em;
   color: #ffffff;
   margin-bottom: 0.5px; /* Pour éviter que le titre ne soit trop collé au tableau en-dessous */
}

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

th /* Les cellules d'en-tête */
{
   background-color: #006600;
   color: white;
   font-size: 0.6em;
   font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
}

td /* Les cellules normales */
{
   border: 1px  #993399;
   background-color: #black;
   color: white;
   font-size: 0.6em;
   font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
   text-align: left; /* Tous les textes des cellules seront centrés*/
   padding: 5px; /* Petite marge intérieure aux cellules pour éviter que le texte touche les bordures */
}


