/* CSS Document */
<style type="text/css">
.popup a {display: block;color:#666666;background: #ffffff;} /* display: block; here fixes Opera */
.popup a:hover {position: relative; color: #666666; cursor: hand; /* cursor for IE! */}
.popup p span {display: block;} /* doesn't do anything but thought it'd make sense ;) */

.popup a span.pop {
font:Verdana, Arial, Helvetica, sans-serif;
color:#666666;
text-decoration:none; 
background : #E4E4CD;
padding : 4px;
border : 0px;
position : absolute;
top: 10px;
left : -9999px; /* AP method of hiding */
/*display: none;*/
}

.popup a:hover span.pop {
left: 10px; /* AP method of showing */
/* display: block; */
}

.popUp a span.pop img {display: block;}

/* span.text {white-space: nowrap;}*/ /* CSS IE fix if maniuplating br's isn't an option */
table.popup{ border: 0px;
padding: 2px 2px 2px 2px;
border-collapse:collapse;
background-color:#E6E6FA;
}

table.popup td { border: 1px dotted #f8f8ff; padding: 7px; }


table.popup tr.special td { background-color:#b0c4de; }

.tl {
	font-family: verdana;
	font-size: 12px;
	font-color: #333333;
	text-decoration: underline;
	color: #333333;
}


.tl a:visited {
	font-family: verdana;
	font-size: 12px;
	color: #666666;
	text-decoration: underline;
}
.tl a:hover {
	font-family: verdana;
	font-size: 12px;
	color: #999999;
	text-decoration: underline;
}


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 20;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
padding: 5px;
left: 100px;
border: 0px;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -200px;
left: 100px; /*position where enlarged image should offset horizontally */

}


</style>
