<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.gallery a {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	display: block;
	float: left;
	margin: 0 12px 12px 0;
	line-height: 0;
}
.gallery img {
	width: auto;
	max-width: 100%;
	height: auto;
	border: 0;
	margin-bottom: 16px;
}
body {
    background-color: #3b3939;
}
#gallery {
    margin-top: 12px;
}
.gallery a img {
  border-radius: 4px;
  -webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}
.gallery a:hover img { 
	opacity: 0.4; 
}

</pre></body></html>