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

/* SCRIPT AJAX & CSS - Info-bulles en temps réel */		
/* Texte des liens */		
a.tt
	{
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color: #005273;
	font-weight:bold;
	text-decoration:underline;
    position:relative;
    z-index:24;
	width:129px;
		}
	
/* Affichage */	
a.tt span
	{ 
	display: none;
		}

/* Texte au passage de la souris */
a.tt:hover
	{ 
	z-index:25; 
	color:#FF3300;
			}

/* Propriété du span général (bulle) */
a.tt:hover span.tooltip
	{
    display:block;
    position:absolute;
    top:-55px; left:-15px;
	padding: 0px 0 0 0;
	width:150px;
	color:#01415d;
	font-size:10px;
    text-align: center;
	line-height:16px;
	text-decoration:none;
    /* Opacité du fond coloré */
	filter: alpha(opacity:80);
	KHTMLOpacity: 0.80;
	MozOpacity: 0.80;
	opacity: 0.80;
		}

/* Dessus de la bulle (graphisme) */
a.tt:hover span.top
	{
	display: block;
	width:143px;
	height:8px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background: url(../images/up.png) no-repeat top;
		}
		
/* Cpontenu de la bulle (graphisme) */
a.tt:hover span.middle
	{
	display: block;
	width:143px;
	background:url(../images/middle.png) repeat;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;		
	}

/* Dessous de la bulle (graphisme) */
a.tt:hover span.bottom
	{
	display: block;
	width:143px;
	height:28px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;;
	color: #548912;
	background: url(../images/down.png) no-repeat bottom;
		}
