 

/* mise à zéro du compteur exercice. */
body{
	counter-reset : exercice; 
}


#tetepage {
	border-radius:  50px 50px 0 0;
	text-align: center;
	background : #111;
	color : white;
	margin :0;
}

#titrecours{
    margin :0;
}


#titrecours::after{
    content : "\3000""\3000"    "\270D"  "\3000" ' Exercices '  ;
    
}



#corpspage{
    margin-top : 4em ;
	
	width : 100%;
}



#contenu{
	width : 90%;
	 margin-left: auto;
    margin-right: auto;
}

#piedpage{
   margin-top: 3em;
	background : #555;
	color :white; 
	display :table;
	width : 100%;
}

#piedpage a{
	color: white;
}

#planpied{
	 display : table-cell;
	 text-align : center;
}

#lycee{
	 display : table-cell;
	 text-align:right;
}





 

/* article correspondant à un énoncé d'exercice. */
 .enonceexercice{
	display : table;
	width : 100%;
}


/* article correspondant à une solution d'exercice. */
 .solutionexercice{
	display : table;
	width : 100%;
}



/* boîte conseil destinée à être contenue dans un article 
( exercice) */
 .boiteconseil{
 	display :table-cell;
 	width : 20%;
 	padding-left: 5%;
 	font-family: Courier;
}



 

/*   titres h2 pour les titres d'exercices. */
#contenu h2.titreexercice {
	color : #DF7401;
	font-size : 2em;
}


/* mise à jour du compteur d'exercices dans la page. */
h2.titreexercice{
	counter-increment : exercice; 
}


/* Inscription Exercice suivi du numéro d'exercice dans la page. */
h2.titreexercice::before{
	content : 'Exercice 'counter(exercice)'.'; 
}


/*   titres h2 pour les solutions d'exercices. */
#contenu .solutionexercice h2{
	color : #F5DA81;
	font-size : 2em;
}
 

/* affichage pour les résultats d'un programme */
.affichage{
	width : 80%;
	margin : auto;
	background-color : #4C1B1B;
	color :  #FFFFFF;
	border : none;
	font-size: larger;
}

 
 
 
 

 
