/* Infobulle */
.bulle {
	width:300px;
}
.bulle .tip-top{
	background:url(images/haut.gif);
	height:21px;
}
.bulle .tip{
	background:url(images/milieu.gif);
	padding:0 20px 0 20px;
}
.bulle .tip-title{
	text-align:justify;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#765F14;
	font-weight:bold;
}
.bulle .tip-text{
	display:none;
}
.bulle .tip-bottom{
	background:url(images/bas.gif);
	height:21px;
}
/*
<div class="options.className"> //the className you pass in options will be assigned here.
    <div class="tip-top"></div> //useful for styling
 
    <div class="tip">
 
        <div class="tip-title"></div>
 
        <div class="tip-text"></div>
 
    </div>
 
    <div class="tip-bottom"></div> //useful for styling
</div>
*/