/* CSS Document */

#calendrier {
	font-family:arial;
	width:250px;
	padding:10px;
}
#calendrier a{
	text-decoration:none;
	color:#000000;
	cursor:pointer;
}
#calendrier table{
	border-collapse:collapse;
	width:100%;
	margin-left:15px;
}
#calendrier th{
	font-size:12px;
	border-top:1px solid;
	border-bottom:1px solid #000000;
}
#calendrier th.mois{
	font-size:14px;
	padding:3px;
	text-align:center;
}
#calendrier th.semaine{
	width:20px;
	border-bottom:1px solid;
}
#calendrier th.jour{
	width:20px;
}

#calendrier td{
	font-size:10px;
	text-align:center;
	border-top:1px solid #000000;
	border-bottom:1px solid #000000;
	width:25px;
	padding:2px;
}
#calendrier td.today{
	background-color:#cecece;
}
#calendrier td.inactif{
	font-style:italic;
	color:#ffffff;
}
#calendrier td.actif{
}
#calendrier td.event{
	background-color:#ff7f00;
	font-weight: bold;
}
#calendrier_events{
	font-size:12px;
	background-color:#a9eafe;
	color:#000000;
}
#calendrier_events .event{
	margin:2px;
	padding:2px;
}


