@charset "utf-8";

/*
 * Tooltip -----------------------------------------------------------------------
 */

.pop a:hover
{
	position				: relative;
	top						: 0px;
	left					: 0px;
}

.Tooltip
{
	position				: absolute;
	top						: 17px;
	left					: 20px;
	display					: none;
	padding					: 5px;
	width					: 300px;
	font-weight				: bold;
	text-decoration			: none;
	color					: #b22222;
	background-color		: #f0f8ff;

	border-top				: white solid 10px;
	border-left				: #f0f8ff solid 10px;

	filter					: alpha(opacity=85);	/* IE */
	    -moz-opacity		: 0.85;					/* FirefoxENetscape */
	  opacity				: 0.85;					/* OperaESafari */
}
a:hover .Tooltip {
	display					: block;
}
