/**************************************** FEUILLE DE STYLE **********************************\
Voici comment cela fonctionne:

font-family: Police d'écriture
text-align: alignement du texte (left,center,right)
font-size: taille du texte en pt
font-style: style du texte ("normal,"italic")
font-weight: graisse de police ("normal","bold","bolder")
width: largeur de la cellule en px
height: hauteur de la cellule en px
border-color: couleur de la bordure de la cellule
border-width: largeur de la bordure
border-style: style de la bordure (normal = "solid", pointillés = "dotted, tirets="dashed", aucune = "none")
color: couleur du texte
**********************************************************************************************/



/* TABLEAU */
.calendrier td {
	text-align:center;
	vertical-align:middle;
	width: 196px;
}

/* NOM DU MOIS */
td.nom_mois  {
	font-size:8pt;
	font-style:normal;
	font-weight:bold;
	height: 10px;
	background-color: #ABCEE6;
}
  
  /* FLECHES */
td.fleches  {
	font-size:10pt;
	font-style:normal;
	font-weight:bold;
	height: 10px;
	color: #006699;
  }
  
/* NOMS DES JOURS*/
tr.noms_jours  {
  width:15;
  height:15;
  font-size:8pt; }
  
 /*DATES*/
td.jours  {
  width:15;
  height:15;
  font-size:8pt;
  background-color:#D6DBE0; }
  
 /* AUJOURD'HUI */
td.aujourdhui  {
	width:15;
	height:15;
	font-size:8pt;
	background-color:#006699;
	font-weight: bold;
	color: #FFFFFF;
}
  
 /* CASES DES MOIS PRECEDENTS ET SUIVANTS*/
td.cases_vides  {
  width:15;
  height:15;
  border-color:#F5F5F5;
  border-width:1px;
  border-style:solid;
  font-size:8pt;
  color:#C0C0C0;}
  
.calendrier a:link {text-decoration:none;}
.calendrier a:visited  {text-decoration:none;}
.calendrier a:active  {text-decoration:none;}
