/*
Design d'exemple du Site du Zér0
Réalisé par zaz, venom et mateo21
<lien url="http://www.siteduzero.com">http://www.siteduzero.com</lien>
*/

body
{
   width: 1000px;
   margin: auto;
   margin-top: 20px;
   margin-bottom: 20px;    
   background-image: url("images/background.png");
   
}

/* L'en-tête */

#en_tete
{
   width: 1000px;
   height: 200px;
   background-image: url("images/top_header.png");
   background-repeat: no-repeat;
   margin-bottom: 10px;
}


/* Le menu */

#menu
{
   float: left;
   width: 200px;
}

.acceuil/* image du menu */
{
   text-align: center;
}

.acceuil a img 
{
   border: none; 
}


.element_menu
{
   background-color: #e3cb86;
   background-image: url("images/motif.png");
   background-repeat: repeat-x;
   
   border: 2px solid black;
   
   margin-bottom: 20px;
}


/* Quelques effets sur les menus */


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

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

.element_menu a
{
   color: black;
}

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


/* Le corps de la page */

#corps
{
   margin-left: 210px;
   margin-bottom: 20px;
   padding: 10px;
   width: 766px;
   
   color: black;
   background-color: #e3cb86;
   background-image: url("images/motif.png");
   background-repeat: repeat-x;
   
   border: 2px solid black;
}

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

#corps h2
{
   height: 30px;

   background-image: url("images/titre.png");
   background-repeat: no-repeat;
   
   padding-left: 30px;
   color: #B3B3B3;
   text-align: left;
}

#corps p
{
    text-align: justify;
    text-indent: 30px;
}

#corps ul 
{
   list-style-image: url("images/puces.jpg");
}

#corps a
{
   color: blue;
   text-decoration: none;
}

#corps a:hover
{
   text-decoration: underline;
}


#corps .legende /* images et légendes  */
{
    text-align: center;
    font-size: 15px;
    font-weight: bold;
}

#corps .latin /* nom latin */ 
{
font-style: italic;
font-size: 14px;

}




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

#pied_de_page
{
   margin-left: 210px;
   padding: 0px;

   text-align: center;

   color: black;
   background-color: #e3cb86;
   background-image: url("images/bottom.jpg");
   background-repeat: no-repeat;
   
   border: 2px solid black;
}


