a.tip {
	position: relative;
}

a.tip span {
	display: none;
	position: absolute;
	top: 30px;
	left: 30px;
	width: 100px;
	padding: 2px;
	z-index: 100;
	background: #fff;
	color: #0c4da2;
	-moz-border-radius: 5px; /* this works only in camino/firefox */
	-webkit-border-radius: 5px; /* this is just for Safari */
	font-family: Tahoma, Arial;
	font-size: 11.11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	text-decoration: none;
}

a:hover.tip {
	font-size: 99%; /* this is just for IE */
}

a:hover.tip span {
	display: block;
}
	
