/*
Design d'exemple du Site du Zér0
Réalisé par zaz, venom et mateo21
http://www.siteduzero.com
*/

body
{
   width: 760px;
   margin: auto;
   margin-top: 7px;
   margin-bottom: 2px;   
   background: green;
}

/* L'en-tête */

#en_tete
{
   width: 760px;
   height: 100px;
   background-image: url("bannierehaut.jpg");
   background-repeat: no-repeat;
   margin-bottom: 10px;
   padding-right: 5px;
   color: rgb(2,64,166);
   font-family: Tahoma, "Comic sans MS", Arial, "Arial Black", "Times New Roman", Times, serif;
   text-align: right;

}


/* Le menu */

#menu
{
   float: left;
   width: 135px;
}

.element_menu
{
   background-color: rgb(192,192,192);
   background-repeat: repeat-x;
   
   border: 2px solid yellow;
   
   margin-bottom: 5px;
}


/* Quelques effets sur les menus */


.element_menu h4
{   
   color: red;
   font-family: "Comic sans MS", Arial, "Arial Black", "Times New Roman", Times, serif;
   text-align: center;
}

.element_menu ul
{
   list-style-image: url("images/puce.png");
   font-family: "Comic sans MS", Arial, "Arial Black", "Times New Roman", Times, serif;
   padding: 0px;
   padding-left: 15px;
   margin: 0px;
   margin-bottom: 5px;
}

.element_menu a
{
   color: blue;
}

.element_menu a:hover
{
   background-color: orange;
   color: black;
}


/* Le corps de la page */

#corps
{
   margin-left: 140px;
   margin-bottom: 5px;
   padding: 2px;
   color: black;
   background-color: rgb(192,192,192);
   background-repeat: repeat-x;
   border: 2px solid yellow;
}

#corps h1
{
   color: red;
   text-align: center;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
}

#corps h2
{
   height: 30px;
   background-image: url("images/titre.png");
   background-repeat: no-repeat;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;  
   padding-left: 30px;
   color: green;
   text-align: left;
}

#corps h4
{
   background-repeat: no-repeat;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
   color: blue;
   text-align: left;
}

/* Le pied de page (qui se trouve tout en bas, en général pour les copyrights) */

#pied_de_page
{
   width: 760px;
   font-family: "Comic sans MS", Arial, "Arial Black", "Times New Roman", Times, serif;
   color: black;
   background-color: rgb(192,192,192);
   border: 2px solid yellow;
}