/* CSS Document */
/**************************************** 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
**********************************************************************************************/
/* DOCUMENT */
#calendar table
{
  border-color: #000000;
  padding: 5px;
}
/* TABLEAU */
#calendar td
{
  text-align: center;
  vertical-align: middle;
}
/* NOM DU MOIS */
#calendar td.nom_mois
{
  /*font-size: 8pt;*/
  font-style: normal;
  font-weight: bold; /*normal;
  /*border: none;*/
  border-color: black; /*#202020; /*#5C82CC; /*#33CCCC;*/
  border-width: 1px;
  border-style: solid;
  color: white; /*#C0C0C0;*/
  background-color: black; /*#202020; /*#5C82CC; /*#3399CC;*/

}  
/* FLECHES */
#calendar td.fleches
{
  font-size: 14pt;
  font-style: normal;
  font-weight: bold;
  /*border: none;*/
  border-width: 1px;
  background-color: #DD0000; /*red;*/
}
/* NOMS DES JOURS*/
#calendar tr.noms_jours
{
  width: 15;
  height: 15;
  border: none;
  /*font-size: 8pt;*/
}
#calendar tr.noms_jours td
{
  border: none;
}
/*DATES*/
#calendar td.jours {
  width: 15;
  height: 15;
  border-color: #202020; /*#5C82CC; /*#33CCCC;*/
  border-width: 1px;
  border-style: solid;
  /*font-size: 8pt;*/
  color: #C0C0C0;
  background-color: #202020; /*#5C82CC; /*#3399CC;*/
}
/* AUJOURD'HUI */
#calendar td.aujourdhui
{
  width: 15;
  height: 15;
  border-color: #000000;
  border-width: 1px;
  border-style: solid;
  /*font-size: 8pt;*/
  color: #FFFFFF;
  background-color: #DD0000; /*#FF0000; /*#002163; /*#003399;*/
}
/* CASES DES MOIS PRECEDENTS ET SUIVANTS*/
#calendar td.cases_vides
{
  width: 15;
  height: 15;
  border-color: #202020; /*#96E2DC; /*#F5F5F5;*/
  border-width: 1px;
  border-style: solid;
  /*font-size: 8pt;*/
  color: #202020; /*#002163; /*#C0C0C0;*/
}  
#calendar a:link, #calendar a:visited, #calendar a:active 
{
  text-decoration: none;
  color: silver;
}
