/* -------------------------------------------------------------------------- */
/*
 * Tooltips Silver Stylesheet.
 * 
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * File: tooltips.css
 * Date: 14 may 2012
 * Author: Mathieu Brunot
 * Version: 1.0
 * 
 */
/* -------------------------------------------------------------------------- */

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

.tooltips {
	max-width:500px;
    overflow: hidden;
    position:absolute;
	border:1px solid #C0C0C0;
	background:url('bg_tooltip.gif') 100% 100% repeat-x #F0F0F0;
	z-index: 1000000;
	padding:8px;
    font-family:Consolas, Arial, san-serif !important;
    font-size:11px;
    color:#555;
}

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

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