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-bottom: 20px;    /* Idem pour le bas du navigateur */
	font-family : Comic Sans MS, arial;
	text-align : left; /*aligement sur la gauche*/
	color : white; /*tout le text est écrie en blanc*/
	background-color: black; /*le fond est de couleur noir*/
	font-size :0.8em
	/*background-image : url(http://...); */
	/*background-attachement : fixe; */
	/*background-repeat : repeat-x, repeat-y, no-repeat;*/
	/*background-position : top, bottom,left,center,right,30px 45px;*/
}

a
{
	text-decoration : none;
	color : blue;
}
a:hover
{
	text-decoration : underline;
	color : yellow;
}
a:active
{
	background-color : blue;
	color : white;
}
a:visited
{
	text-decoration : none;
	color : navy;
}

#menu
{
	width: 760px;
	margin-bottom: 10px;
	text-align : center;
}
#titre
{
	width: 760px;
	height: 100px;
	margin-bottom: 10px;

	text-align : center;
	font-size : 2em; 
	color : yellow;
	font-weight : bold; 
	font-family : KREDIT,Comic Sans MS, arial;
}
#box
{
	width: 760px;
}
#box_left
{
	float: left;
	width: 400px;
}
#box_right
{
	margin-left: 420px;
	width: 300px;
}

.titre_box
{
	color : red;
	font-size : 1.5em;
}
.element_box
{
	background-color : rgb(0,0,100);
	color : rgb(98,98,255); 
	border: 2px ridge rgb(0,0,120);
}
.element_box p
{
	text-indent : 20px; 
}
.element_box .en_avant
{
	font-size : 1em; 
	font-weight : bold; 
}
.element_box .en_arriere
{
	font-size : 0.8em; 
	font-style : italic; 
	color : green;
}
.

#pied
{
	width: 760px;
	text-align : center;
	margin-bottom: 10px;
}






