/*  auteur: Bernard Martin-Rabaud 
 Date de création: 20/12/2003  */
/* Définition de règle */
@charset "iso-8859-1";

/* style englobant tout le calendrier */
#calendrier {
	width: 300px;
	padding: 2px;
	color: #000;
	border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px #666666 solid;
}

/* style pour chaque partie du calendrier (haut et jours du mois) */
#calendrier-haut, #calendrier-jours {
	width: 300px;
}

#calendrier-haut {
	background-color: #e8e1cc;
	padding: 8px; 
	border-radius: 5px;
	-moz-border-radius: 5px;
	border-bottom: 0px solid red;
}

.calendrier-fleche {
	width: 15px;
	text-align: center;
}

/* style pour le mois et l'année */
#calendrier-mois-an {
*	font-family: arial,sans-serif; 
	font-size: 14px;
*	font-weight: bold;
	text-align: center;
}

/* les 2 styles suivants pour les jours de la semaine (semaine et fin de semaine) */
.calendrier-sem, .calendrier-fin-sem {
	padding: 5px;
*	font-family: arial,sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	background-color: #fff;
	border-bottom: 0px solid red;
}

/* style pour les jours de la semaine correspondants au week-end */
.calendrier-fin-sem {
//	color: #000000;
}

/* les styles suivants pour les jours du mois */
.calendrier-jour, .calendrier-jour-auj, .calendrier-jour-we, .calendrier-jour-horsmois {
	padding: 8px 5px 8px 5px;
	width: 30px;
*	font-family: arial,sans-serif;
	font-size: 13px;
	color: #333;
	text-align: center;
	text-decoration: none;
}


/* style pour la date du jour */
.calendrier-jour-auj {
	font-weight: bold;
	color: #000000;
//	background-color: #FFFFFF;
	text-decoration: none;
}

/* style pour les jours de week-end */
.calendrier-jour-we {
	color: #000000;
}

/* style pour les jours hors du mois affiché */
.calendrier-jour-horsmois {
	color: #D2D2D2;
	font-style: italic;
}

/* style pour les jours fériés */
.calendrier-jour-ferie {
//	font-weight: bold;
}
	