﻿

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position:relative ;
z-index: 5;


}
#table {
	font-family: tahoma;
	font-size: small;
	color: #f1f1f1;
	margin-left: 10px;
	margin-top: 20px;
}

.thumbnail:hover{
	background-color:Transparent;
	z-index: 0;
	position:relative;
}
.thumbnail span{
	/*CSS for enlarged image*/
    border-style : inherit;
	border-width: 1px;
	border-color: gray;
	position: absolute;
	background-color: #f1f1f1;
	padding: 1px;
	left: -1000px;
	visibility: hidden;
	color: black;
	text-decoration: none;
	width:120px;
}
.thumbnail span img{
	/*CSS for enlarged image*/
border-color: #f1f1f1;
	border-width: 0;
	padding: 2px;
	width:120px;
}
.thumbnail:hover span{
	/*CSS for enlarged image on hover*/
 visibility : visible;
	top: 21px;
	left: -120px; /*position where enlarged image should offset horizontally */
}


