/* La table calendrier */
#calendrier{
	position: abolute;
	border: 3px solid #0078C0;
	background-color: White;
	border-collapse: collapse;
	color: #0078C0;
	font-size: 11px;
}

/* Le nom du mois au dessus du calendrier. */ 
#calendrier th{ 
	font-family: arial,helvetica;  
	background-color: #0078C0;
	color: white; 
	font-weight: bold;
}

/* L'image de fermeture du calendrier*/
#calendrier th img{ 
	position: absolute;
	top: 0;
	right: 0;
}

#calendrier th a,#calendrier th a:hover{
	text-decoration: none;
	color: white;
}

#calendrier th a:visited{
	color: White;
}

/* Les cellules en général */
#calendrier td{
	border: 2px solid #A0C8E0;
	padding: 1px;
	text-align: center;
	vertical-align: middle;
	font-size: 10px;
}

/* Les cellule pour le nom du jour */
#calendrier td.nomJour{
	background-color: Navy;
	color: White;
	font-weight: Bold;
}

/* La cellule du jour en cours */ 
#calendrier td.today{ 
	background-color: #F0E68C;
	color: #00008B;
	font-weight: bold;
}

/* La cellule du jour en cours */ 
#calendrier td.dimanche a, #calendrier td.dimanche a:hover{ 
	color: Red;
}

/* La cellule du jour corespondant à l'evt */ 
#calendrier td.jourChoisi{
	font-weight: bold;
}

#calendrier td.jourChoisi img{ 
	position: absolute;
	margin-top: -5px;
	margin-left: -4px;
}
