/*
Tooltip.js
Written by James Dudley (@jdstudios)
Date: July 29, 2010
See Tooltip.js for detailed description on how this plugin works.
*/

.ToolTipTrigger {
	background: url(icon_tooltip.gif) top right no-repeat;
	padding-right: 15px;
	cursor:pointer;/* make room for the icon */
	color: #039;
	text-decoration: underline;
}

.ToolTip {
	display: none;
	z-index: 100;
	position: absolute;
	overflow: visible;
	cursor: default;
	padding: 7px;
	background: #eee;
	border: 3px solid #78911B;
	-moz-border-radius: 7px; /*curved edges for CSS3 capable browsers.*/
	-webkit-border-radius: 7px;
}

.ToolTipClose {
	float: right;
	width: 20px;
	height: 20px;
	margin: 0 0 3px 3px;
	background: url(icon_close.png) top right no-repeat;
}

