#en_tete
{
   width: 780px;
   height: 100px;
   background-image: url("images/banniere.png");
   background-repeat: no-repeat;
   margin-bottom: 10px;
}
body
{
	width: 780px;
	margin: auto;
	margin-top: 50px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
	margin-bottom: 50px;
	background-color: grey;
	background-image: url("shadoks2.jpg");
	font-family:"Monotype Corsiva","Times New Roman",Time,arial,serif;
	font-size: 24px;
	color:blue;
		font-weight: bold;
	
}
#menu
{
   float: right; /* Le menu flottera à droite */
   width: 180px; /* Très important : donner une taille au menu */

}

.element_menu
{
   background-color: #311416;
   background-image: url("images/menu.jpg");
   background-repeat: repeat;
   font-size: 20px;
	color:yellow;
   border: 6px double cyan;
   padding-bottom: 8px;
   padding-top: 8px;
   padding-left: 0px;
   padding-right: 2px;
   margin-bottom: 20px; /* Pour éviter que les éléments du menu ne soient trop collés */
}
.element_menu h3 /* Tous les titres de menus */
{    
   color: #e27183;
   font-family: Jokerman, "Arial Black", "Times New Roman", Times, serif;
   text-align: center;
}
.element_menu ul /* Toutes les listes à puces se trouvant dans un menu */
{
   list-style: square; /* On change l'apparence des puces */
   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: 5px; /* Même chose que tout à l'heure, on modifie ensuite juste margin-bottom, mais tous les autres sont à 0px */
}

/* Le corps de la page */

#corps
{
   margin-right: 0px;
   margin-bottom: 20px;
   padding: 5px;
   background-attachment: fixed; 
   color: green;
   background-color: #3210FE;
   background-image: url("shadoks1.jpg");
   background-repeat: repeat;
   
   border: 3px double green;
}

#corps h1 /* Tous les titres h1 du corps */
{
   color: #118218;
   text-align: center;
   font-family: "Times New Roman",Arial, "Arial Black", Times, serif;
}

#corps h2 /* Tous les titres h2 du corps */
{
   height: 30px;
    color: #118712;
   padding-left: 30px;
   text-align: center;
}
#pied_de_page
{
   padding: 8px;
   clear: both;
   text-align: center;
   color: #102030;
   background-color: #123456;
   border: 34px simple black;
   background-image: url("shadoks3.jpg");
   background-repeat: repeat
}
#corps p
{
	text-indent:16px;
}


td,th /* Toutes les cellules des tableaux... */
{
   border: 1px solid black; /* ... auront une bordure de 1px */
}

table /* Le tableau en lui-même */
{
	height: 500px;
   margin: auto; /* Centre le tableau */
   border: 4px outset red; /* Bordure du tableau avec effet 3D (outset) */
   border-collapse: collapse; /* Colle les bordures entre elles */
}
td,th
{
	vertical-align:middle;
	border-collapse: collapse;
	text-align:center;
}
tfoot th /* Les cellules d'en-tête */
{
   background-color: white;
   color: red;
   font-size: 1.1em;
   font-family: "Times New Roman",Arial, "Arial Black", Times,  serif;
   text-align:center;
}
.note
{
	color:blue;
	font-size:0.8em;
	font-style:italic;
	text-align:center;
}
caption
{
	caption-side: top; 
	margin:5px;
	color:red;
	font-size:0.9em;
	font-weight: bold;
	font-variant: small-caps;
}
textarea
{
	width:500px;
	height:150px;
	text-align:left;
	font-family: "Times New Roman",arial,serif;
}

input:hover, textarea:hover /* Quand le curseur est sur un champ */
{
   background-color: #cecece;
}
.shadok
 {
	color:blue;
	font-weight:bold;
	font-family: Jokerman, "Comic Sans MS", "Times New Roman",arial,serif;
	
}
.fr
 {
	color:#ed7f10;
	font-weight:bold;
	font-family: "Comic Sans MS", "Times New Roman",arial,serif;
	
}
.attention
 {
	color:blue;
	
}
.attention:hover
 {
	text-decoration:blink;
	color:red;
	text-transform:uppercase;
	font-size:2em;
	text-align:center;
}




