@charset "UTF-8";
/* CSS Document */

body
{
   width: 900px;
   margin: auto; /* Pour centrer notre page */
   margin-top: 0px; /* 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 */
   /*background-color: #FFE712;*/
   background-image: url("img/fond.png"); /* Une petite image de fond pour éviter d'avoir un vieux fond blanc :p */
   font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
}


/* L'en-tête */

a
{
	text-decoration: underline; /* Les liens ne seront plus soulignés */
	color: #000;
}


#header
{
   /*width: 760px;*/
   height: 100px;
   /*background-color: #FFE712;*/
   /*background-image: url("img/banner.png");
   background-repeat: no-repeat;*/
   /*margin-bottom: 10px;*/
}


/* Le menu (HOME) */
#menu
{
}

/* Le corps (HOME) */

#corps
{
}

/* Le corps haut du prelude */

#corps_haut
{
	/*background-color:#fff;*/
	background-color:#FFE712;
	/*height: 500px;*/
	padding:20px;
	padding-left:350px;
	font-size:11px;
}

#logo {
}

#txtChoix {
	padding-left:35px;
}

.lienSouligne
{
	color: #f00;
	text-decoration:underline;
}

.txtEntrer
{
	text-decoration: underline;
	color:#000;
	font-size:14px;
	/*font-weight:bold;*/
}


/* Le corps bas du prelude */

#corps_bas
{
	background-color:#FFE712;
	/*background-color:#fff;*/
	padding: 10px;
	padding-top: 60px;
	text-align:center;
	font-size:10px;
	color:#666;
}


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

#footer
{
	margin-top: 5px;
	padding: 5px;

	text-align: right;
	margin-top:5px;

	color: #333333;
	font-size:10px;
	background-color: #ffe712;
	border: 1px solid #666;
}


