﻿
/*

Thumbnail popups based on http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/
*/
.ScreenshotThumb
{
	position: relative;
	z-index: 0;
	color:gray;
	text-align:center;
	font-size:.9em;
	text-decoration:none;
}



.ScreenshotThumb:hover
{
	background-color: transparent;
	z-index: 50;
}



.ScreenshotThumb span
{
	/*CSS for enlarged image*/
	position: absolute;
	background-color: Transparent;
	padding: 0px;
	border: solid 1px black;
	visibility: hidden;
	color: black;
	text-decoration: none;
}



.ScreenshotThumb span img
{
	/*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}



.ScreenshotThumb:hover span
{
	/*CSS for enlarged image on hover*/
	position:fixed;
	visibility: visible;
	top: 50px;
	left: 100px; /*position where enlarged image should offset horizontally */
}

/*
end thumbnail popups
*/