@charset "UTF-8";
/* CSS Document */

#calendrier {
	font-family:arial;
	width:250px;
	padding:0px;
	position: relative;
}
#calendrier a{
	cursor:pointer;
	color: #063;
	text-decoration: none;
}
#calendrier table{
	border-collapse:collapse;
	width:204px;
	background-color: #F0F0F0;
}
#calendrier th{
	font-size:13px;
	border-top:1px solid;
	border-bottom:1px solid #000000;
}
#calendrier th.mois{
	font-size:12px;
	padding:3px;
	text-align: center;
}
#calendrier th.semaine{
	width:20px;
	border-bottom:1px solid;
}
#calendrier th.jour{
	width:20px;
}

#calendrier td{
	font-size:12px;
	text-align:center;
	border-top:1px solid #000000;
	border-bottom:1px solid #000000;
	width:25px;
	padding:2px;
	font-weight:bold;
}
#calendrier td.today{
	background-color:#FFF;
	color: #F30;
}
#calendrier td.inactif{
	font-style:italic;
	color:#999999;
}
#calendrier td.actif{
}
#calendrier td.event{
	background-color:#f3f3f3;
}
#calendrier_events{
	font-size:12px;
	width: 204px;
	text-align: center;
	padding: 0;
	position: absolute;
	clip: rect(auto,auto,200px,auto);
	margin-top: 2px;
	z-index: 10;
}
#calendrier_events .event{
	color:#FFF;
	background-color: #090;
	margin:0px;
	padding:10px;
	display: block;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: 5px solid #FFF;
}