/**
* cSans Tooltip pluging v0.1
* 2009 Copyright A navalla suíza http://anavallasuiza.com
* cSans is released under the GNU Affero GPL version 3 - more information at http://www.fsf.org/licensing/licenses/agpl-3.0.html
*/

/* BASIC STYLES */

.tooltip:hover {
	background:transparent;
	text-decoration:none;
	}
.tooltip span {
	font-size: 0.8em;
	line-height:130%;
	display:none;
	padding:0;
	margin:95px 0 0 -110px;
	width:220px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;	
	}

.tooltip:hover span {
	cursor: default;
	display:inline;
	position:absolute;
	border:1px solid #000;
	background:#ccc;
	color:#000;
	}
	
.custom:hover span {
	cursor: default;
	display:inline;
	position:absolute;
	border:none;
	background:none;
	color:#999;
	}

