#image_wrapper {
	position: relative;
	height: 234px;
	width: 400px;
	margin: 0px auto 0px auto;
}

.thumbnail img {
	background-color: #fff;
	padding: 1px;
}

.thumbnail:hover {
	background-color: transparent;
}

.thumbnail:hover img {
	/*border: 1px solid #72cdf4;
	background-color: #fff;
	padding: 2px;*/
}

.thumbnail span {
	position: absolute;
	left: -1000px;
	visibility: hidden;
}

.thumbnail span img {
	border-width: 0;
	border:1px solid #72cdf4;
}

.thumbnail:hover span {
	visibility: visible;
	top: 0;
	left: 0px;
	z-index: 50;
}

