/*  auteur: Bernard Martin-Rabaud 
 Date de création: 20/12/2003  */

/* STYLES DU CALENDRIER */

#calendrier-entete {
	width: 100%;
	height: 20px;
	padding: 1px 0px 1px 0px; 
	background-color: #c5e2ff;
}

#calendrier-corps {
	width: 100%;
	padding: 3px 3px 3px 3px;
}
	
/* style pour le mois et l'année dans le titre du calendrier */
#calendrier-titre {
	padding: 1px 0px 1px 0px;
	width: 125px;
	font-family: arial,sans-serif;
	font-size: 9pt;
	text-align: center;
	font-weight: bold; 
}

td.calendrier-fleche {
	width: 22px;
	background-color: #eee;
}

/* les 2 styles suivants pour les jours de la semaine (semaine et fin de semaine) */
.calendrier-jours-semaine, 
.calendrier-jours-weekend {
	padding-right: 3px;
	width: 22px;
	font-family: arial,sans-serif;
	font-size: 8pt;
	text-align: right;
	font-weight: bold;
}

.calendrier-jours-weekend {
	/*color: #c00000;*/
	background-color: #ddd;
}

/* les styles suivants pour les jours du mois */
.calendrier-jour, 
.calendrier-aujourdhui, 
.calendrier-hors-mois {
	padding-right: 3px;
	width: 22px;
	font-family: arial,sans-serif;
	font-size: 8pt;
	text-align: right;
}

/* style pour la date du jour */
.calendrier-aujourdhui {
	font-weight: bold;
	color: #000;
	border-top: 1px #bbe8ff solid;
	border-right: 1px #0095e2 solid;
	border-bottom: 1px #0095e2 solid;
	border-left: 1px #bbe8ff solid;
	background-color: #a3e0ff;
}

/* style pour les jours hors mois */
.calendrier-hors-mois {
	color: #aaa;
}

/* style pour les jours fériés */
.calendrier-ferie {
	/*color: #b25c00;*/
	background-color: #ddd;
}

