
.product_td {
	vertical-align: top;
	width: 200px;
	height: 200px;
	text-decoration: none;
}

.thumbnail {
	position: relative;
	z-index: 0;
	border: 0px;
	text-decoration: none;
	cursor: default;
}

.thumbnail:active {
	text-decoration: none;
	cursor: default;
}

.thumbnail:hover {
	background-color: transparent;
	z-index: 50;
	border: 0px;
}

.thumbnail span { /*CSS for enlarged image*/
	position: absolute;
	/*position: fixed;*/
	background-color: black;
	padding: 5px;
	left: -1000px;
	border: 0px;
	visibility: hidden;
	color: white;
	text-decoration: none;
}

.thumbnail span img { /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
	border: 0px;
}

.thumbnail:hover span { /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0;
	border: 0px;
	left: 0px; /*position where enlarged image should offset horizontally */
	width: 300px;
}

