a.tip {
	position: relative;
}

a.tip span {
	display: none;
	position: absolute;
	top: -180px;
	right: -110px;
	width: 125px;
	padding: 5px;
	z-index: 100;
	background: #eaeaea;
	border: 2px #960000 solid;
	color: #000000;
	-moz-border-radius: 5px; /* this works only in camino/firefox */
	-webkit-border-radius: 5px; /* this is just for Safari */
}

a:hover.tip {
	font-size: 99%; /* this is just for IE */
}

a:hover.tip span {
	display: block;
}
	
