* {
   font-size: 22px; /* On définit les propriétés de texte pour toutes les balises. */
   font-family: Tahoma, Verdana, Arial, serif;
  
}
a.info {
   position: relative;
   color: black;
   text-decoration: none;
   border-bottom: 1px #370203 dotted; /* On souligne le texte. */
}
a.info span {  padding         : 2px 16px 2px 2px;
   display: none; /* On masque l'infobulle. */
}
a.info:hover {
   background: none; /* Correction d'un bug d'Internet Explorer. */
   z-index: 500; /* On définit une valeur pour l'ordre d'affichage. */

   cursor: help; /* On change le curseur par défaut par un curseur d'aide. */
}
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é. */


   background: #FFFFFF;

   color: #370203;
   padding: 3px;
   border: 2px solid  #370203;
   border-left: 4px solid #370203;
}



.zt-container{
	width:800px;
	height:800px;
	position:relative;
	overflow:hidden;
	margin:20px auto;
	background:#fff;
	border:7px solid #fff;
	-moz-box-shadow:1px 1px 3px #ddd;
	-webkit-box-shadow:1px 1px 3px #ddd;
	box-shadow:1px 1px 3px #ddd;
}
img.zt-current{
	position:absolute;
	display:none;
}
img.zt-temp{
	position:absolute;
	opacity:0;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}
.zt-tag{
	position:absolute;
	z-index:10;
	border:1px solid #fff;
	background:transparent url(../images/tag.png) repeat top left;
	width:50px;
	height:37px;
	cursor:pointer;
	-moz-box-shadow:1px 1px 2px rgba(0,0,0,0.7);
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.7);
	box-shadow:1px 1px 2px rgba(0,0,0,0.7);
	 border-radius: 10px 10px 10px 10px;
}
.zt-tag-back{
	width:60px;
	height:60px;
	left:2%;
	bottom:0px;
	margin-left:-16px;
	background:#000 url(../images/back.png) no-repeat center center;
	-moz-border-radius:5px 5px 0px 0px;
	-webkit-border-radius:5px 5px 0px 0px;
	border-radius:5px 5px 0px 0px;
	border:1px solid #fff;
	border-bottom:none;
}
.zt-loading{
	position:absolute;
	width:50px;
	height:50px;
	top:50%;
	left:50%;
	margin:-25px 0 0 -25px;
	opacity:0.8;
	z-index:99999;
	-moz-border-radius:10px 10px 10px 10px;
	-webkit-border-radius:10px 10px 10px 10px;
	border-radius:10px 10px 10px 10px;
	background:#fff url(../images/ajax-loader.gif) no-repeat center center;
}