/*  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 {
	color: #000;
	width: 189px;
	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: 189px;
}

#calendrier-haut {
	height: 20px;
	background-color: #fff;
	padding: 1px 0px 1px 0px; 
	border-bottom: 1px solid red;
}

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

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

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

/* 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 {
	width: 27px;
	font-family: arial,sans-serif;
	font-size: 11px;
	color: #000000;
	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;
}
	