/* CSS Document */

#calendrier {
	font-family:arial;
	width:200px;
	padding:0px;
	/*background-color:#cccccc;*/
}
#calendrier a{
	text-decoration:underline;
	color:#000000;
	cursor:pointer;
}
#calendrier table{
	border-collapse:collapse;
	width:100%;
}
#calendrier th{
	font-size:11px;
	border-top:0px solid;
	border-bottom:0px solid #000000;
}
#calendrier th.mois{
	font-size:12px;
	padding:2px;
}
#calendrier th.semaine{
	width:20px;
	border-bottom:0px solid;
}
#calendrier th.jour{
	width:20px;
}

#calendrier td{
	font-size:10px;
	text-align:center;
	border-top:0px solid #000000;
	border-bottom:0px solid #000000;
	width:0px;
	padding:2px;
	font-weight:;
}
#calendrier td.today{
	background-color:#ff9933;
	font-weight:bold;
}
#calendrier td.inactif{
	font-style:italic;
	color:#999999;
}
#calendrier td.actif{
}
#calendrier td.event{
	background-color: #cccccc;
	font-weight:bold;
}
#calendrier_events{
	font-size:12px;
	font-weight:bold;
	background-color:#cccccc;
}
#calendrier_events .event{
	margin:2px;
	padding:2px;
}


