/******************************************************************************/
/*  Cascading Style Sheet pour le site de la Commission Technique de la FLDE  */
/******************************************************************************/

/* Définitions générales */

/* Attributs body, valables pour tout le corps html */

body {
	color: #000000;
	background-color: #FFFFF2;
	
}
/* Attributs des links */

A:link{ 
	color: blue ;
	text-decoration: underline;
}

A:visited{
	color: maroon ;
	text-decoration: underline;
}

A:active {
	text-decoration: none ;
}

A:hover {
	color: red;
	text-decoration:none;
}


/* Attributs des tables */
div.centered {
	text-align: center;
}
div.centered table { 
	text-align: left;
} /*cette class centered permet de centrer les tables dans tous les browsers, même IE. 
	<div class="centered"><table> */ 
table { 
 	background-color: #DDCCEE;
	border: thin black  ; 
	empty-cells: show; 
	margin: 0 auto;
} /*cette class centered permet de centrer les tables dans tous les browsers, même IE. 
	<div class="centered"><table> */ 


th {
	border:  black;
	background-color: #EEEEEE;
}	  

td  {
	border: thin black;
	background-color: #DDDDDD;
}  

td.choix {
	background-color: #FFFF99;	
}

.pair {
 color: green; 
}

.impair {
  color: red; 
}

.over td {background-color:#FFFACD;}
.out td { background-color:#DDDDDD;}

/* Titres */

h1, h2 , h3 , h4 {
	text-align: center;
}

/* Définitions des listes*/

ul {
	margin-left: 15%;
	margin-right: 15%;
}

/* Définitions de classes */

p.commentaires{
	border: thick double black;
	margin-left: 15%;
	margin-right: 15%;
	padding: 2%;
}
p.caisse {
	background-color: blue;
	color: yellow ;
	border: thick double black;
	margin-left: 15%;
	margin-right: 15%;	
}
