/*                                */
/* Calendar style sheet           */
/* Feuille de style du calendrier */
/*                                */

/* Style de la table principale contenant le calendrier */
/* Style de la table principale contenant le calendrier */
table.calendar_main {
	font-family: Arial, Times, serif;
	font-size: 10px;
	padding: 10px;
	margin: 25px 0 35px 22px;
}
*> table.calendar_main {
	margin: 25px 0 35px 15px;
	!margin: 25px 0 35px 21px;
}

/* Style for the calendar header (<< month year >>) */
/* Style du titre du calendrier (<< mois annee >>)  */
tr.calendar_title {
	color: #000000;
	text-align: center;
}

/* Style of the cell "month year" of the header */
/* Style de la cellule "mois annee" du titre    */
.calendar_title_month {
	text-align: center;
	width: 93px;
	padding-bottom: 4px;
}
*> .calendar_title_month {
	width: 97px;		
	!width: 93px;
	padding-bottom: 0;
	!padding-bottom: 4px;
}

/* Style of the link "month year" of the header */
/* Style du lien "mois annee" du titre          */
.calendar_title_month_clickable {
	color: #000000;
	text-decoration: none;
}

/* Style of the cell that contains the link "<<" in the header */
/* Style de la cellule contenant le lien "<<" du titre         */
.calendar_title_left_arrow {
}

/* Style of the cell that contains the link ">>" in the header */
/* Style de la cellule contenant le lien ">>" du titre         */
a.calendar_title_right_arrow {
}

/* Style of the link "<<" of the header */
/* Style du lien "<<" du titre          */
a.calendar_title_left_arrow_clickable {
	margin-left: 0;
}
*> a.calendar_title_left_arrow_clickable {
	margin-left: -1px;
	!margin-left: 0;
}
/* Style of the link ">>" of the header */
/* Style du lien ">>" du titre          */
.calendar_title_right_arrow_clickable {
	color: #000000;
	text-decoration: none;
	background-color: #0066CC;
}

/* Global style of the main calendar table */
/* Style global de la table du calendrier  */
.calendar_table {
	margin-top: 3px;
	border: none;
	border-collapse: collapse;
	font-size: 10px;
	width: 141px;
	height: 115px;
	line-height: 17px;
}

/* Generic style of the calendar table cells              */
/* Style generique des cellules de la table du calendrier */
.calendar_table td {
	border: 1px solid #000005;
	text-align: center;
	width: 20px;
		background-color: #dadfe5;
}

/* Style of the table header cells that contains the days                   */
/* Style des cellules d'en-tete la table du calendrier, contenant les jours */
.calendar_table th {
	border: 1px solid #0066CC;
	background-color: #36455f;
	font-weight: normal;
	text-align: center;
	color: white;
}

/* Style of the calendar cells the contains the week-end days (saturday and */
/* sunday)                                                                  */
/* Style des cellules de la table contenant les jours du week-end (samedi et*/
/* dimanche)                                                                */
.calendar_table td.calendar_weekend {
	background-color: #a8b6c6;
}


/* Style of the table cells that contains the days that are not part of the */
/* monthly currently displayed                                              */
/* Style des cellules contenant des jours ne faisant pas partie du mois en  */
/* cours d'affichage                                                        */
.calendar_other_month {
	color: #889;
}

/* Style for the links of days not part of the month currently displayed */
/* Style des liens des jours ne faisant pas partie du mois en cours      */
/* d'affichage                                                           */
.calendar_other_month_clickable {
	color: #dadfe5;
	text-decoration: none;
}

/* Style for today's day (non-clickable)                  */
/* Style du jour (non cliquable) representant aujourd'hui */
.calendar_today {
	font-weight: bold;
	line-height: 125%;
	font-size: 120%;
	color: #971302;
	
}

/* Style of today's link                              */
/* Style du lien sur le jour representant aujourd'hui */
.calendar_today_clickable {
	color: #ff0000;
	text-decoration: none;
}

/* Style for the links of days part of the month currently displayed     */
/* Style des liens des jours faisant partie du mois en cours d'affichage */
.calendar_day_clickable {
	color: #000000;
	text-decoration: none;
}

