<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">ul.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
	padding: 0;
}
ul.gallery,
ul.gallery li {
	margin: 0;
	list-style: none;
}
ul.gallery li {
	float: left;
	overflow:hidden;
	padding: 3px;
}

ul.gallery.gallery-page-wide li, ul.gallery.gallery-page-wide li img {
	width:100%;
}

.gallery.gallery-page-wide .gallery-desc {
	width:100%;
}

ul.gallery li a {
	display: block;
	height: auto;
	width: auto;
	text-align: center;
	overflow:hidden;
}

ul.gallery li a img {
	border: none;
    margin: 0;
    padding: 0;
	height: 185px;
	aspect-ratio: 1/1 !important;
	object-fit: contain;
}

/* Big Thumbs */
ul.gallery.big_thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
	padding: 0;
}

ul.gallery.big_thumbs li {
	overflow:hidden;
	padding: 0;
	margin: 0 13px 6px 0;
}

ul.gallery.big_thumbs li .gallery-desc {
	vertical-align: top;
	margin: -5px 0 12px 0;
}

ul.gallery.big_thumbs li .gallery-desc  p {
	display: block;
	margin: 0 auto;
	padding: 0;
	font-size: 0.95rem;
	line-height: 1.25rem;
	text-align: left;
}

ul.gallery.big_thumbs li a img {
	aspect-ratio: 5/4;
	object-fit: contain;
}
@media(max-width: 992px) {
	ul.gallery.big_thumbs {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}

@media(max-width: 640px) {
	ul.gallery.big_thumbs {
		grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
		grid-gap: 0 20px;
	}

	ul.gallery.big_thumbs li {
		margin: 0 0 -5px 0;
	}

	ul.gallery.big_thumbs li a img {
		width: 100%;
		object-fit: fill;
		padding-bottom: 0px;
	}

	ul.gallery li a img {
		padding-bottom: 10px;
	}
}

/*!* Big Thumbs *!*/
/*ul.gallery.big_thumbs {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	flex-wrap: wrap;*/
/*}*/

/*ul.gallery.big_thumbs li {*/
/*	flex: 0 0 185px;*/
/*	overflow:hidden;*/
/*}*/

/*ul.gallery.big_thumbs li .gallery-desc {*/
/*	vertical-align: top;*/
/*	margin: -5px 0 7px 0;*/
/*}*/

/*ul.gallery.big_thumbs li .gallery-desc  p {*/
/*	display: block;*/
/*	margin: 0 auto;*/
/*	padding: 0;*/
/*	line-height: 1.25rem;*/
/*	text-align: left;*/
/*}*/

/*ul.gallery.big_thumbs li a img {*/
/*	aspect-ratio: 5/4;*/
/*	object-fit: contain;*/
/*}*/

/*@media(max-width: 1150px) {*/
/*	ul.gallery.big_thumbs li {*/
/*		flex: 1 0 225px;*/
/*		padding: 5px 10px;*/
/*	}*/

/*	ul.gallery.big_thumbs .gallery-desc  p {*/
/*		width: 240px;*/
/*	}*/
/*}*/

/*@media(max-width: 526px) {*/
/*	ul.gallery.big_thumbs li {*/
/*		flex: 1 1 auto !important;*/
/*		padding: 5px 10px;*/
/*	}*/

/*	ul.gallery.big_thumbs li .gallery-desc {*/
/*		float: left;*/
/*	}*/
/*	ul.gallery.big_thumbs li .gallery-desc  p {*/
/*		text-align: left;*/
/*		width: 100%;*/
/*	}*/

/*	ul.gallery.big_thumbs li a img {*/
/*		width: 100%;*/
/*		object-fit: fill;*/
/*	}*/
/*}*/</pre></body></html>