.gallery .image { /* The big image. */
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
}

.gallery .thumbnails {
	padding: 0;
}

.gallery .thumbnails li:hover {
	box-shadow: 0 0 .5em 0 white;
}

.gallery .thumbnails li.selected {
	box-shadow: 0 0 .5em 0 white;
}

.gallery .thumbnails li {
	margin: 0.5em;
	
	width: 100px;
	height: 100px;
	
	display: inline-block;
	
	border-radius: .5em;
	overflow: hidden;
}

.gallery .thumbnails img {	
	max-width: 100px;		/* Make these bigger to zoom and crop the thumbnails. */
	max-height: 100px;
	
	/* Do I hate making things center? Yes, yes I do, very much indeed. */ 
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/* This shite fixes the shite dropped on us by the main theme. */
.gallery ul {
	padding: 0;
	text-indent: 0;
}
.gallery li:before {
	content: "";
	padding: 0;
}