a.picPop {
	font-size: 14px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: underline;
	color: #000099;
	position: relative; 
	z-index: 1;
}
a.picPop:visited {
	font-size: 14px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: underline;
	color: #0066FF;
	position: relative; 
	z-index: 1;
}
a.picPop img {
	position: absolute;
	visibility: hidden; /* hide the image */
	width: 150px; /* 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: 0; /* position:the image */
	top: -203px;
}
a.picPop:hover {
	font-size: 14px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: underline;
	color: #FF0000;
	border: 0px; /* needed for this to work in IE */ 
	z-index: 3;
}
a.picPop:hover img {
	visibility:visible; /* make the image visible */
	height: 200px; /* now give it a height */
	cursor: pointer; /* for IE */
	border: 1px;
	z-index: 2; 
}

