@charset "utf-8";
/* CSS Document */
a.pop img{
	border:0;
}
a.pop, a.pop:visited {
	z-index:1;
	border:0;
	text-decoration: none;
}
a.pop b {
	position:fixed;
	visibility:hidden; /* hide the image */
	width:auto; /* give it a width */
	height:0; /* no height to solve an Opera bug that 
             makes it selectable when hidden */
	border:1px solid #000; /* add a border */
	left:450px; /* position:the image */
	top:150px;
}
a.pop:hover {
text-decoration:none; 
border:0; /* needed for this to work in IE */ 
z-index:1000;
}
a.pop:hover b {
	visibility:visible; /* make the image visible */
	height:auto; /* now give it a height */
	cursor:pointer; /* for IE */
	z-index:500;
	background-color: #F93;
	filter:alpha(opacity:80);
	-moz-opacity: 0.8;
	opacity: .80;
}
a.pop:hover b img {
	border:0; /* remove the link border */
	
}

