@charset "utf-8";

* {
	padding: 0;
	margin: 0;
}

/** css tooltips */
label.tip {
	text-decoration: none;
}

label.tip:hover {
	position: relative;
	cursor: help;
	z-index: 100;
	font-weight: bold;
}

label.tip span {
	display: none;
	position: absolute;
}

label.tip:hover span {
	display: block;
   	position: absolute; bottom: 20px; left: 0;
	/* formatting only styles */
   	padding: 5px; margin: 10px; z-index: 100;
   	border: 2px dotted #000;
    text-decoration: none;
	padding-right: 40px;
	background: #FC0 url(images/info.png) 99% 50% no-repeat;
	width: 240px;
	z-index: 100;
	/* end formatting */
}
