.thumbnail{
position: relative;
float:left;
display:block;
z-index: 0;
margin-left:5px;
margin-bottom:5px;
}

.thumbRow {
	margin-bottom:10px;
	border-bottom:1px solid #e9e9e9;
	}
	
.thumbRow td {
	padding-bottom:10px;
	}

.thumbnail:hover{
background-color: transparent;
z-index: 550;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
/*background-color: white;*/
padding: 0px;
left: -1000px;
top:0;
/*border: 1px solid gray;*/
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
position:absolute;
/*top: 0;*/
bottom:0;
left: -350px; /*position where enlarged image should offset horizontally */

}


