/* Enumération des sections */

body 
{
	margin-left: 20px; 
	margin-right: 20px;
	font-family: "Helvetica";   
	font-size: 120%; 
	color : #000000;
	counter-reset: chapitre;  /* Initialisation du compteur chapitre */
}


h1 
{
	border-top:5px;
	border-bottom:5px;
	border-left:0;
	border-right:0;
	border-style:solid; /* Encadrement */
	/*border-width:5px;*/   /* Epaisseur globale de la bordure */
	font-weight: bold; 
	font-size: 300%; 
	color : #000000;
	/*text-decoration: underline;*/
	page-break-after: avoid;  /*Pour éviter qu'un titre soit coupé du paragraphe qui suit*/
	counter-reset: section;  /* On ré-initialise le compteur section à chaque fois qu'on tombe sur la balise <h1> */
}

h1:before {
	counter-increment: chapitre;  /* Ajoute 1 au compteur chapitre */
	content: counter(chapitre) ". ";
}

h2 
{
   	font-style: italic;
   	font-size: 280%;
	color: #000000;
   	margin-left: 50px; 
	counter-reset: subsection;  /* On ré-initialise le compteur section à chaque fois qu'on tombe sur la balise <h1> */
	page-break-after: avoid;  /*Pour éviter qu'un titre soit coupé du paragraphe qui suit*/
}

h2:before {
	counter-increment: section;  /* Ajoute 1 au compteur section */
	content: counter(chapitre) "." counter(section) " ";
}

h3 
{
   	font-size: 350%;
	font-weight: bold; 
	color: #009900;
	text-decoration: underline;
   	margin-left: 50px; 
   	margin-right: 50px; 
	page-break-after: avoid;  /*Pour éviter qu'un titre soit coupé du paragraphe qui suit*/
}

hr
{
	color: #000000; 
	border: solid; 
}

a
{ 
	color : #000000;
	text-decoration:none; 
} 

.chevron
{	
	color : #FF0000;
	font-family: arial;   
   	font-weight : bold;
    	font-size: 150%;
}

.chevron:before
{
	content: ">";
}

td.plan
{
	color : #000000;
   	font-weight : bold;
    	font-size: 300%;
}

td.fonction
{
	color : #000000;
	font-size: 300%;
}

td.titre
{
	/*display: inline;*/	
	/*padding: 5px;*/
	/*border: 5px black solid;*/
	color: #000000;
   	font-style: italic;
   	font-weight: bold;
	font-size: 250%;
}

/*Les menu */

#menu
{
	background:transparent url("bandeau.jpg") repeat-x;
	font-size:100%;
	position:fixed;
	bottom:0px;
	left:0px;
	width:100%;
	height:36px
}

/* Les conteneurs */

#menu dl
{
	float:left;
	margin:0;
	width:100%;
}
