﻿/*
	name:	jQuery Tooltip Widget
	file:	tooltip.css
	usage:	<a class="tooltip" href="#" title="put your tooltip here">xxxxx</a>
			<span class="tooltip" title="put your tooltip here">xxx xxxx xx</span>
			<td class="tooltip" title="put your tooltip here"></td>
*/

.tooltip
{
	cursor: default;
}

a.tooltip
{
	cursor: pointer;
}

#tooltip, #tooltip_inner
{
	border: 1px solid #AAAAAA /* border gray */;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#tooltip
{
	background: #f5f5f5;
	border-color: #666;
	display: none;
	font-size: 15px;
	padding: 3px;
	position: absolute;
	left: -9999px;
	width: 200px;
	z-index: 9999;
}

#tooltip_inner
{
	background: #f9f9f9;
	border-color: #ccc;
	padding: 10px;
}
