﻿/*HOVER POPUP LINKS*/

#popup a:visited {
position: relative;
padding: 0 1px;
margin: 0;
border: none;
text-decoration: none;
font-size: 1em;
font-weight: bold;
}

#popup a {
position: relative;
padding: 0 1px;
margin: 0;
border: none;
text-decoration: none;
font-size: 1em;
font-weight: bold;
}

#popup a span {display: none;}

#popup a:hover { background-color: #1A4E6A; }

/* the IE correction rule */
#popup a:hover	{
color: #f00; background-color: #1A4E6A;
text-indent: 0; /* added the default value */
}

#popup a:hover span{
	display: block;
	position: absolute;
	top: 0px;
	left: -215px;
	width: 200px;
	margin: 0px;
	padding: 10px;
	color: #FF9900;
	font-weight: normal;
	background: #1A4E6A;
	text-align: left;
	border: 1px #FFFFFF solid;
}