/* The hint to Hide and Show */
.hint {
	display: none;
	position: absolute;
	width:350px;
	margin-top: -4px;
	border: 1px solid #c93;
	padding: 10px 12px;
	/* to fix IE6, I can't just declare a background-color,I must do a bg image, too!  So I'm duplicating the pointer.gif image, and positioning it so that it doesn't show up    within the box */
    background: #ffc url(images/pointerT.gif) no-repeat -10px 5px;
}
.hint-pointer-left {
	position: absolute;
	right: -10px;
	top: 5px;
	width: 10px;
	height: 19px;
	background: url(../images/pointerR.gif) right top no-repeat;
}
.hint-pointer-right {
	position: absolute;
	left: -10px;
	top: 5px;
	width: 10px;
	height: 19px;
	background: url(../images/pointerL.gif) left top no-repeat;
}
.hint-pointer-top {
	position: absolute;
	left: 5;
	top: -10px;
	width: 19px;
	height: 10px;
	background: url(../images/pointerT.gif) left top no-repeat;
}
a.info {
	position:relative; /*this is the key*/
	z-index:24;
	cursor:hand
}
a.info:hover {
	z-index:25;
	background-color:transparent
}
a.info div {
	display: none
}
a.info:hover div { /*the span will display just on :hover state*/
	display:block;
	position:absolute;
	top:2em;
	left:2em;
	width:350px;
	margin-top: -4px;
	border: 1px solid #c93;
	color:#000;
	padding: 10px 12px;
	background: #ffc;
	text-align: left;
	text-decoration:none
}

