@charset "utf-8";
/* CSS Document */

/* css/tooltip.css -- fancy tooltips */

span.tool {
	position: relative;   /* this is key */
	cursor: help;
	text-decoration: none;
}
 
span.tool span.tip {
	display: none;        /* so is this */
	text-decoration: none;
}

/* tooltip will display on :hover event */
 
span.tool:hover span.tip {
	display: block;
	z-index: 100;
	position: absolute;
	top: 0;
	left: 30px;
	width: 200px;
	line-height: 1.2em;
	padding: 3px 7px 4px 6px;
	border: 1px solid #336;
	background-color: #f7f7ee;
	font-family: arial, helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000;
	text-align: left;
	text-decoration: none;
}

/* css/tooltip.css */

.tool img {
	border-style: none;
	margin-right: 3px;
	margin-left: 3px;
}
