<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* ======= //
// GALLERY //
// ======= */

/* CSS for the gallery.inc.php file */


/* Tiny MCE is putting the gallery in a table with display block in the inline styles, which is breaking margin: auto for centering */
.wdk_gallery-container {
	display: table !important;
	border-collapse: collapse;
	border-spacing: 0;
	box-sizing: border-box;
}
.wdk_gallery-container td {
	padding: 0;
}
.wdk_gallery-container * {
	box-sizing: border-box;
}


.gallery { 
	list-style: none;
	font-size: 0;
	margin: 0;
	padding: 0;
}
.gallery * { 
	box-sizing: border-box;
}

.gallery__item {
	float: left;
	/*As all items have a 1px border, when 2 are next to each other it looks like 2px, this stops that.*/
	margin: 3px;
}
.gallery__item:hover {
	opacity: .8;
}

.gallery__link {
	border: 1px solid black;

	display: table-cell;
	vertical-align: middle;

	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.gallery__item__image {
	max-width: 100%;

	/* Center Horizontally */
	margin: auto;
	display: block;
}


/* Magnific Popup Styling */
.mfp-close:focus,
.mfp-arrow:focus {
	outline: none;
}</pre></body></html>