/* -------------------------------------------------------------------------- */
/*
 * Tooltips Stylesheet: Steel.
 * 
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Fichier : tooltips.css
 * Date : 13 may 2012
 * Auteur: brunot
 * Version: 0.3
 * 
 */
/* -------------------------------------------------------------------------- */

/* main ----------------------------- */
.tooltips {
	max-width:500px;
    overflow: hidden;
    position:absolute;
	border:1px solid #000;
	background:url('bg_tooltip.gif') 100% 100% repeat-x #b6b6b6;
	
	padding:8px;
    font-family:Consolas, Arial, san-serif !important;
    font-size:11px;
	color:#E0E0E0;
}


/* css3 ----------------------------- */
.tooltips {
	-webkit-border-radius: 6px;
	-moz-border-radius : 6px;
	border-radius : 6px;
	
	-webkit-box-shadow: rgba(255,255,255,0.75) 0 0 1px inset, 
		rgba(32,32,32,0.75) 1px 1px 3px;
	-moz-box-shadow : rgba(255,255,255,0.75) 0 0 1px inset, 
		rgba(32,32,32,0.75) 1px 1px 3px;
	box-shadow : rgba(255,255,255,0.75) 0 0 1px inset, 
		rgba(32,32,32,0.75) 1px 1px 3px;
	
	-webkit-text-shadow: 0 1px 0 #333;
	-moz-text-shadow: 0 1px 0 #333;
	text-shadow: 0 1px 0 #333;
	
	background-image: -o-linear-gradient(top, rgb(182,182,182) 0%,
		rgb(76,76,76) 100% );
	background-image: -moz-linear-gradient(top, rgb(182,182,182) 0%,
		rgb(76,76,76) 100% );
	background-image: -webkit-linear-gradient(top, rgb(182,182,182) 0%,
		rgb(76,76,76) 100% );
	background-image: -ms-linear-gradient(top, rgb(182,182,182) 0%,
		rgb(76,76,76) 100% );
	background-image: -webkit-gradient(linear, left top, left bottom, 
		color-stop(0, rgb(182,182,182) ),
		color-stop(1, rgb(76,76,76) ) );
	background-image: linear-gradient(top, rgb(182,182,182) 0%,
		rgb(76,76,76) 100% );
}


/* -------------------------------------------------------------------------- */