.photocol .thumbDiv {
	position: relative;
	cursor: pointer;
	width: auto;
	height: 150px;
	overflow: hidden;
	border: 1px solid silver;
	border-radius: 4px;
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
}

.photocol .thumbDiv img {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100%;
	width: auto;
	-webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.thumbnail img {
	cursor: pointer;
}