/*HOVER POPUP LINKS*/

#popup a, #popup a:visited {
	position: relative;
	display: block;
	width: 92px;
	height: 20px;
	line-height: 13px;
	text-align: left;
	padding: 0px;
	margin: 0;
	border: 0px solid #666;
	text-decoration: none;
	font-size: 1em;
}

#popup a span {
	display: none;
}

#popup a:hover { 
	background-color: #e9e9e2; 
}

/* the IE correction rule */
#popup a:hover	{
	color: #f00; 
	background-color: #e9e9e2;
	text-indent: 0; /* added the default value */
}

#popup a:hover span {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 90px;
	margin: 0px;
	padding: 2px;
	color: #335500;
	font-weight: normal;
	background: #e5e5e5;
	text-align: center;
	border: 1px solid #666;
}

/*end of hover popup links*/