/*
.tipsy {
	padding: 5px;
	font-size: 12px;
	opacity: 0.8;
	filter: alpha(opacity=80);
	background-repeat: no-repeat;
	background-image: url(../images/tipsy.gif);
}

.tipsy-inner {
	padding: 5px 8px 4px 8px;
	background-color: black;
	color: white;
	max-width: 200px;
	text-align: center;
}

.tipsy-inner {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}


.tipsy-north {
	background-position: top center;
}

.tipsy-south {
	background-position: bottom center;
}

.tipsy-east {
	background-position: right center;
}

.tipsy-west {
	background-position: left center;
}
*/


.tipsy {
  position: absolute;
  width: auto;
}

.tipsy-inner {
	max-width: 400px;	
	
  padding: 0;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  text-align: left;
  
/*  color: white;
  background: #009999;
  background: rgba(0,152,152,0.95); */

  color:#111;
  background: yellow;
  background: rgba(255,255,0,1);

  padding: 10px;
  -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;
  list-style: none;
  line-height: 16px;
}

.tipsy span {
  display: block;
  width: 0; 
  height: 0; 
  /*
  border-left: 10px solid transparent; 
  border-right: 10px solid transparent;
/*  border-top: 10px solid #009999;
  border-top: 10px solid rgba(0,152,152,0.95);*/

  /*border-top: 10px solid #009999;
  border-top: 10px solid rgba(255,255,0,1);
  border-bottom: 0;
  margin-left: 10px;*/
}

.tipsy-north .tipsy-inner {
	margin-top: 10px;
}

.tipsy-north span{
  border-left: 10px solid transparent; 
  border-right: 10px solid transparent;
  border-bottom: 10px solid #009999;
  border-bottom: 10px solid rgba(255,255,0,1);
  border-top: 0;
  margin-left: 10px;
  
  top: 0;
  position: absolute;
}

.tipsy-south .tipsy-inner {
	margin-bottom: 10px;
}

.tipsy-south span{
  border-left: 10px solid transparent; 
  border-right: 10px solid transparent;
  border-top: 10px solid #009999;
  border-top: 10px solid rgba(255,255,0,1);
  border-bottom: 0;
  margin-left: 10px;

  bottom: 0;
  position: absolute;
}

.tipsy-east .tipsy-inner {
	margin-right: 10px;
}

.tipsy-east span {
  border-top: 10px solid transparent; /* rendre le coin plat */
  border-bottom: 10px solid transparent;
  border-left: 10px solid #009999;
  border-left: 10px solid rgba(255,255,0,1);
  border-right: 0;
  margin-top: 10px;

  right: 0;
  top: 0;
  position: absolute;
}

.tipsy-west .tipsy-inner {
	margin-left: 10px;
}

.tipsy-west span {
  border-top: 10px solid transparent; 
  border-bottom: 10px solid transparent;
  border-right: 10px solid #009999;
  border-right: 10px solid rgba(255,255,0,1);
  border-left: 0;
  margin-top: 10px;

  left: 0;
  top: 0;
  position: absolute;
}
