/* thumbnail popup */
.thumbnail
{
	position: relative;
	z-index: 0;
	
	color: Black;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
}

.thumbnail:hover
{
	background-color: transparent;
	z-index: 50;
	
	text-decoration: underline;
	color: #0099FF;
}

/*CSS for enlarged image*/
.thumbnail span
{
	position: absolute;
	background-color: whitesmoke;
	padding: 3px;
	left: -1000px;
	border: 1px dashed gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

/*CSS for enlarged image*/
.thumbnail span img
{
	border-width: 0;
	padding: 2px;
}

/*CSS for enlarged image on hover*/
.thumbnail:hover span
{
	visibility: visible;
	left: 125px;
	bottom: 20px;
}
/* */

.thumbnail2
{
	position: relative;
	z-index: 0;
	color: Black;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
}

.thumbnail2:hover
{
	background-color: transparent;
	z-index: 50;
	text-decoration: underline;
	color: #0099FF;
}

/*CSS for enlarged image*/
.thumbnail2 span
{
	position: absolute;
	background-color: whitesmoke;
	padding: 3px;
	left: -1000px;
	border: 1px dashed gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

/*CSS for enlarged image*/
.thumbnail2 span img
{
	border-width: 0;
	padding: 2px;
}

/*CSS for enlarged image on hover*/
.thumbnail2:hover span
{
	position: absolute;
	visibility: visible;
	left: 75px;
	bottom: 15px;
}
/* */