/*ceci est un fichier "design.css"*/
	      
.id
h1
{
   font-size: 22px; /* Titres de 22 pixels */
   font-family: "Arial Black", Arial, Verdana, serif; /* On essaie d'avoir Arial Black en priorité */
}

p
{
   /* La police Comic Sans MS est agréable à lire pour les paragraphes je trouve */
   font-family: "Comic Sans MS", "Trebuchet MS", Georgia, serif;
   }
/*tous les paragraphes seront ecrits en bleu en pixels 18*/
h2
{
   color: blue;
   font-size: 18px;
}
h4
{
	font-size: 18px;
	font-family: Times New Roman;
	font-style: bold;
	font-weight: normal;
	color: Red;
}
body
{
   width: 760px;
   margin: auto; /* Pour centrer notre page */
   margin-top: 20px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
   margin-left: 20px;
   margin-bottom: 20px;    /* Idem pour le bas du navigateur */
   background-color: #d0f0f0;
	}
	
/* L'en-tête */

#en_tete
{
   width: 800px;
   height: 150px;
   background-image: url("images/Image fond2.jpg");
   background-attachment: scroll;
   background-repeat: no-repeat;
	margin-left: 10px;
   margin-bottom: 10px;
}
/* Le menu */

#menu
{
   float: left; /* Le menu flottera à gauche */
   margin-left: 10px;
   width: 180px; /* Très important : donner une taille au menu */
   font-family: "Comic Sans MS", "Trebuchet MS", Georgia, serif;
   background-color: #D3D3D3;
   background-repeat: repeat-x;
   border:2px solid black;
   }

.element_menu h3 /* Tous les titres de menus */
{    
   color: black;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
   text-align: center;
}

.element_menu ul /* Toutes les listes à puces se trouvant dans un menu */
{
   padding: 0px; /* Tous les côtés ont une marge intérieure de 0 pixels */
   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: 10px; /* Même chose que tout à l'heure, on modifie ensuite juste margin-bottom, mais tous les autres sont à 0px */
   	}
	
  .element_menu li 
  {
	background-color: white;
	margin-top: 5%;
	margin-right: 10%;
	text-indent: 18%;
	text-align: center;
	list-style-type: none;
	line-height: 20px;
	background-repeat: no-repeat;
	background-position: 2% 30%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-image: url("images/puce bleue.gif");
	} 

.element_menu a /* Tous les liens se trouvant dans un menu */
{
   text-decoration: none;
   color: black;
}

.element_menu a:hover /* Quand on pointe sur un lien du menu */
{
   background-color: #B3B3B3;
   color: #FBB03B;
   text-decoration: underline;
}

#content
 { 
   text-align: center;
   margin: auto; 
   font-family: "Comic Sans MS", "Trebuchet MS", Georgia, serif;
   }
.element_content ul
	{
	text-align: left;
	line-height: 20px;
	padding-left: 10px;
	text-justify: auto;
	list-style-type: disc;
}
.element_content h3 /* Tous les titres de menus */
{    
   color: black;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
   text-align: center;
 } 

 .important
{
   color: red;
   font-size: 18px;
}
.nom
{
   color: blue;
}
.bouton
   {

   FONT-COLOR *: #FF0000;
}
#pied_de_page
{
	font-size: 12px;
	font-family: "Comic Sans MS", "Trebuchet MS", Georgia, serif;
	text-indent:36%;
}	

em
{
   background-color: yellow;
}
strong
{
   color: red;
}


