/*fichier servant pour la mise en forme de la page index.html */
/*background-color:#3f3f3f*/
/*couleur de fond de la page, centrage, police par défaut... */
body{
	width: 1002px;
	margin: 0 auto;
	padding-top:5px;
		
	background-color: #333333;
	color: white;
	font-family: Arial, Georgia,Verdana;
	font-size: 90%;
	}
	
/*mise en forme des liens -> blanc*/
a {
	color:#99998b;
	}
	
/*bordure blanche pour toutes les images qui servent de lien */
a img {
	border: 0px;
	}
	
#en-tete {
	height:100px;
	/*background-color:black;*/
	border-top: 1px solid #99998b;
	border-left: 1px solid #99998b;
	border-right: 1px solid #99998b;
	}

/* le corps comprend le menu de gauche, le texte-central et le menu de droite. il a les couleurs et les bordures*/
#corps {
	background-color:#3f3f3f;
	border-left: 1px solid #99998b;
	border-right: 1px solid #99998b;
	border-bottom: 1px solid #99998b;
	/*height: 570px;*/
	height: auto;
}
#menu-gauche{
	width: 120px;
	margin-left: 15px;
	margin-top: 10px;
	float: left;
	/*border-right: 1px solid #99998b;*/
	}
	
#menu-droite{
	float: right;
	width: 120px;
	margin-left: 15px;
	margin-top: 10px;
	/*border-left: 1px solid #99998b;*/
	}
	
/*police par défaut dans la partie centrale "corps" */
#texte-central{
	padding-top:15px;
	margin-bottom:20px;
	margin-left: 180px;
	margin-right: 180px;
	font-family:Georgia;
	font-style:italic;
	/*height: 570px;
	overflow:auto;*/
}


h1{
	color: white;
	font-family:Georgia;
	font-size: 150%;
	line-height:50%;
	text-align: center;
	}
h2{
	color: white;
	font-family:Georgia;
	font-size: 110%;
	line-height:80%;
	}
#commentaire{
	text-align: center;
	position:relative;
	top:-10px;
	border-bottom: 1px solid #99998b;
	}
	
#texte-courant{
	position:relative;
	text-align:justify;
	top:-10px;
	}


/*police par défaut dans le pied de page "pied-de-page" */
#pied-de-page{
	padding-top:5px;
	font-size:75%;
	text-align:center;
	color: #99998b;
	}

/*image du menu de gauche (thèmes)*/
.image-gauche{
	left: 10px;
	top: -10px;
	}

/*image du menu de droite (calendriers)*/	
.image-droite{
	right: 10px;
	top: -10px;
	}
	
/*contenu du tableau*/
	td{
	vertical-align:top;
	text-align:justify;
	padding: 5px;
	font-size:90%;
	}
	
/*centrer les images de la partie centrale*/
/*
.image-centre{
		position: absolute;
		left: 50%;
		margin-left: -100px;
	}	
*/
	
