/*                                */
/* 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: Tahoma, Verdana, Helvetica, Arial;
	font-size: 9pt;
	border:0px;
}

/* Style for the calendar header (<< month year >>) */
/* Style du titre du calendrier (<< mois annee >>)  */
.calendar_title {
	font-size: 11pt;
	color: #333333;
	font-weight: bold;
	text-align: center;
	background-image: url('http://www.parisfraise.com/images/bg-entete-calendar.gif');
	background-repeat: no-repeat;
}

/* Style of the cell "month year" of the header */
/* Style de la cellule "mois annee" du titre    */
.calendar_title_month {
	height: 30px;
	width: 200px;
}

/* Style of the link "month year" of the header */
/* Style du lien "mois annee" du titre          */
.calendar_title_month_clickable {
	color: #333333;
	font-weight: bold;
	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 {
	text-align: left;
	height: 30px;
	width: 40px;
}

/* Style of the cell that contains the link ">>" in the header */
/* Style de la cellule contenant le lien ">>" du titre         */
.calendar_title_right_arrow {
	text-align: right;
	height: 30px;
	width: 40px;
}

/* Style of the link "<<" of the header */
/* Style du lien "<<" du titre          */
.calendar_title_left_arrow_clickable {
	color: #333333;
	text-decoration: none;
}

/* Style of the link ">>" of the header */
/* Style du lien ">>" du titre          */
.calendar_title_right_arrow_clickable {
	color: #333333;
	text-decoration: none;
}

/* Global style of the main calendar table */
/* Style global de la table du calendrier  */
.calendar_table {
	border: 0px;
	border-collapse: collapse;
	font-size: 9pt;
}

/* Generic style of the calendar table cells              */
/* Style generique des cellules de la table du calendrier */
.calendar_table td {
	border: 1px solid #E62351;
	background-image: url('http://www.parisfraise.com/images/motif-calendar-main.gif');
	text-align: center;
	width: 40px;
	height: 30px;
}

/* 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 {
	color: #333333;
	border: 1px solid #E62351;
	background-color: #FFFFFF;
	background-image: url('http://www.parisfraise.com/images/motif-calendar.gif');
	font-weight: bold;
	text-align: center;
	width: 40px;
	height: 30px;
}

/* 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_weekend {
	background-color: #FFFFFF;
}

/* 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: #999999;
}

/* 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                                                           */
a.calendar_other_month_clickable:active, a.calendar_other_month_clickable:hover
{
	color: #999999;
	font-weight: bold;
	text-decoration: underline;
}

a.calendar_other_month_clickable, a.calendar_other_month_clickable:link, a.calendar_other_month_clickable:visited
{
	color: #999999;
	text-decoration: none;
}

/* Style for today's day (non-clickable)                  */
/* Style du jour (non cliquable) representant aujourd'hui */
.calendar_today {
	color: #E62351;
	font-weight: bold;
}

/* Style of today's link                              */
/* Style du lien sur le jour representant aujourd'hui */
.calendar_today_clickable {
	color: #E62351;
	font-weight: bold;
	text-decoration: underline;
}

/* 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 */
a.calendar_day_clickable, a.calendar_day_clickable:link, a.calendar_day_clickable:visited
{
	color: #333333;
	text-decoration: none;
}

a.calendar_day_clickable:active, a.calendar_day_clickable:hover
{
	color: #333333;
	font-weight: bold;
	text-decoration: underline;
}

