/* Fichier CSS de Auris.php */

body
{
	background-image: url("Auris - fond.jpg");
	background-attachment: fixed; /* Le fond restera fixe */
	background-size: cover;
	text-align: center;
	font-family: Verdana;
}

h1
{
	font-family: Chalkduster;
}

 /* Table annee */
#annee {
	width: 95%;
	height: 500px;
	margin-left : auto;
	margin-right : auto;
}

/* Case mois */
h4 	{
	text-align: center;
	}
#mois {
	width: 90%;
	height: 200px;
	margin-left: auto;
	margin-right: auto;
	border-collapse: collapse;
}

/* Case jour */
.case {
	border: 1px solid black;
	text-align: center;
}

/* Lien */
a {
   position: relative;
   color: black;
   text-decoration: none;
}

a span {
   display: none; /* On masque l'infobulle. */
}

a:hover {
   background: none; /* Correction d'un bug d'Internet Explorer. */
   z-index: 500; /* On dŽfinit une valeur pour l'ordre d'affichage. */
   cursor: auto; /* On change le curseur par dŽfaut par un curseur auto. */
   color: white;
}

a: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: 15px; /* On positionne notre infobulle. */
   left: 15px;
   background: white;
   padding: 3px;
   color: black;
}

.nom {
	background: white;
	padding: 3px;
	margin: 3px;
	}
	
strong {
	text-decoration : underline;
	}