﻿/* CSS Document */

#calendrier {

	font-family: "Segoe UI", Tahoma, Geneva, Verdana;

	width:290px;

	padding:;

	/*background-color:#cccccc;*/

}

#calendrier a{

	text-decoration:none;

	color:#ffffff;

	cursor:pointer;

}

#calendrier table{
	border-collapse:collapse;
	width:100%;
}
#calendrier th{

	font-size:14px;

	/*border-top:0px solid #FFFFFF;*/

	border-bottom:1px solid #000000;

}

#calendrier th.mois{

	font-size:16px;

	padding:2px;
	
	background-color: #800000;
	
	color: #FFFFFF;

	


}

#calendrier th.semaine{

	width:20px;

	border-bottom:5px solid;
	
	background-color: #c0c0c0;
}

#calendrier th.jour{

	width:10px;

}



#calendrier td{

	font-size:14px;

	text-align:center;

	border-top:1px solid #ffffff;

	border-bottom:1px solid #c0c0c0;

	width:0px;

	padding:2px;

	font-weight:bold;

}

#calendrier td.today{
	background-color: #C0C0C0;
	border: thin #ffffff;

}

#calendrier td.inactif{

	font-style:italic;

	color:#999999;

}

#calendrier td.actif{
}
#calendrier td.event{
	border: thin #FFFFFF solid;
	background-color: #800000;
	font-weight: bold;
	color: #FFFFFF;
	cursor: hand;
}

#calendrier_events{

	font-size:13px;

	font-weight:;

	background-color: #c0c0c0;

	color: #000000;
	
	position: absolute;
		
	width: 300px;
	}

#calendrier_events .event{
	margin:5px;
	padding:5px;
}



