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


.centre {
	text-align: center;
}

h1 {
	text-align: center;
}

.code {
	border: 1px dotted black;
	padding: 5px;
}


/* Calendrier */
table.calendrier {
	margin: auto;
	text-align: center;
	border: 1px solid white;
	border-collapse: collapse;
	color: #000000;
	font-size: 12px;
	/*background-color: #0066FF;*/
}

table.calendrier th {
	border-bottom: 1px solid white;
}

table.calendrier td {
	border: 1px solid white;
	width: 15px;
	height: 15px;

}

table.calendrier td div {
	padding: 0px;
	
}

.jourEvenement {
	/*background-color: #0000FF;*/
	
}

.lienCalendrierJour {
	/*background-color: #FF0000;*/
}

.calendrier caption {
	margin: auto;
	margin-bottom: 5px;
}


/* Administration */
#tabAjoutEvent {
	margin: auto;
}
#tabAjoutEvent td {
	width: 50%;
	text-align:center;
}


/* Infobulles */
a.info {
	position: relative;
	color: black;
	text-decoration: none;
	display: block;
}
a.info span {
	display: none; /* on masque l'infobulle */
}
a.info:hover {
	background: none; /* correction d'un bug IE */
	z-index: 500; /* on dfinit une valeur pour l'ordre d'affichage */
}
a.info:hover span {
	display: inline; /* on affiche l'infobulle */
	position: absolute;

	white-space: nowrap; /* on change la valeur de la proprit white-space pour qu'il n'y ait pas de retour  la ligne non-dsir */

	top: 30px; /* on positionne notre infobulle */
	left: 20px;
	
	text-align: left;
	background: white;
	padding: 3px;
	border: 1px solid black;
}

/* Liste des vnements  supprimer */
table.listeEvent {
	width: 100%;
	border: 1px solid black;
	border-collapse: collapse;
}

table.listeEvent td {
	padding: 5px;
}