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


.centre {
	text-align: center;
}

h1 {
	text-align: center;
}

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


/* Calendrier */
table.calendrier {
	width: 500px;
	margin: 0px 0px 0px 0px;  /*haut-droite-bas-gauche*/
	text-align: center;
	border: 1px solid #4682b4;
	border-collapse: collapse;
}

table.calendrier a
{
	color: white;
	font-weight: bold;	
}

.calendrier a:hover
{
	color: white;
	font-weight: bold;	
}

table.calendrier th {
	border-bottom: 1px solid #4682b4;
	text-align: center;
	background-color: #4682b4;
}

table.calendrier td {
	border: 1px solid #4682b4;
	width: 30px;
	height: 30px;
	text-align: center;
}

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

.jourEvenement {
	background-color: #4682b4;
}

.lienCalendrierJour {
	background-color: #aca899;
}

.calendrier caption {
	margin: 10px 0px 10px 0px; /*haut-droite-bas-gauche*/
	font-weight: bold;
}

.calendrier caption a
{
	text-decoration: none;
	color: black;
}

.calendrier caption a:hover
{
	color: #4682b4;	
}


/* 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 définit 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 propriété white-space pour qu'il n'y ait pas de retour à la ligne non-désiré */

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

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

table.listeEvent td {
	padding: 5px;
}