<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Main container */
.rsmg-main-container * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.rsmg-main-container a, .rsmg-main-container a:hover, .rsmg-main-container a:focus {
	text-decoration: none;
}
/* End main container */

/* Album */
.rsmg-albums {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.rsmg-albums &gt; li {
	padding: 0.75rem;
}
.rsmg-main-container.rsmg-center .rsmg-album-container {
	margin: 0 auto;
}
.rsmg-album-container {
	overflow: hidden;
	box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.25);
	transition: box-shadow .2s ease;
}
.rsmg-album-inner-container {
	position: relative;
	padding-top: 100%;
}
.rsmg-album-thumbs {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
    opacity: 1;
    transition: .2s ease;
}
.rsmg-album-thumbs:before {
	content: '';
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	transition: opacity .2s ease;
	z-index: 1;
}
.rsmg-hover-plus {
	height: 24px;
	width: 24px;
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	transition: .2s ease;
}
.rsmg-hover-plus:before {
	height: 4px;
	width: 24px;
	content: '';
	position: absolute;
	left: 0;
	top: 0.75rem;
	transform: rotate(0deg);
	transform-origin: center;
	transition: .2s ease;
	z-index: 1;
}
.rsmg-hover-plus:after {
	height: 4px;
	width: 24px;
	content: '';
	position: absolute;
	left: 0;
	top: 0.75rem;
	z-index: 1;
}
.rsmg-album-thumbs &gt; span {
	display: inline-block;
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.rsmg-album-thumbs &gt; span &gt; img {
	object-fit: cover;
	object-position: center;
	max-width: none;
	max-height: none;
	width: 100%;
	height: 100%;
}
.rsmg-album-thumbs.rsmg-collage-2 &gt; span {
	width: 50%;
}
.rsmg-album-thumbs.rsmg-collage-3 &gt; span {
	height: 50%;
	width: 50%;
}
.rsmg-album-thumbs.rsmg-collage-3 &gt; span:last-of-type {
	width: 100%;
}
.rsmg-album-thumbs.rsmg-collage-4 &gt; span {
	height: 50%;
	width: 50%;
}
.rsmg-album-container {
	line-height: 1.5;
}
.rsmg-album-container .rsmg-title {
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1.5;
	padding: 1.25rem;
	overflow: hidden;
	text-align: center;
	transition: color .2s ease;
	word-wrap: break-word;
}
.rsmg-album-container a.rsmg-title {
	display: block;
}

/* Album hover */
.rsmg-album-container:hover, .rsmg-album-container:focus {
	box-shadow: 0 0 1.5rem 0 rgba(0,0,0,0.35);
}
.rsmg-album-container:hover .rsmg-album-thumbs:before {
	opacity: 0.2;
}
.rsmg-album-container:hover .rsmg-hover-plus {
	opacity: 1;
}
.rsmg-album-container:hover .rsmg-hover-plus:before {
	transform: rotate(270deg);
}
/* End album hover */
/* End album  */

/* Gallery */
.rsmg-gallery {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0 0 1.25rem 0;
	padding: 0;
	z-index: 1;
}
.rsmg-gallery &gt; li {
    padding: 0.75rem;
}
.rsmg-gallery .rsmg-loader-container {
	height: 100%;
	margin: 0;
	padding: 0;
	position: static;
	left: auto;
	top: auto;
}
.rsmg-main-container.rsmg-center .rsmg-item-container {
	margin: 0 auto;
}
.rsmg-item-container {
    overflow: hidden;
    box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.25);
	position: relative;
    transition: box-shadow .2s ease;
}
.rsmg-item-link {
	display: block;
	transition: color .2s ease;
}
.rsmg-item-thumb-container {
	position: relative;
	padding-top: 75%;
}
.rsmg-item-thumb {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	transition: opacity .2s ease;
}
.rsmg-item-thumb:before {
	content: '';
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	transition: opacity .2s ease;
}
.rsmg-hover-zoom {
	height: 30px;
	width: 30px;
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	transition: .2s ease;
}
.rsmg-hover-zoom:before {
	box-sizing: border-box;
	border-radius: 50%;
	height: 24px;
	width: 24px;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	transform: rotate(180deg);
	transform-origin: top right;
	transition: .2s ease;
	z-index: 1;
}
.rsmg-hover-zoom:after {
	height: 6px;
	width: 12px;
	content: '';
	position: absolute;
	left: 16px;
	top: 20px;
	transform: rotate(315deg);
	transform-origin: center;
	transition: .2s ease;
	z-index: 1;
}
.rsmg-item-thumb &gt; img {
	object-fit: contain;
	object-position: center;
	max-width: none;
	max-height: none;
	height: 100%;
	width: 100%;
}
.rsmg-item-body {
	line-height: 1.5;
	padding: 1.25rem;
	word-wrap: break-word;
}
.rsmg-item-title {
	font-size: 1.25em;
	font-weight: 700;
	margin: 0;
	text-align: center;
	transition: .2s ease;
}
.rsmg-item-title + .rsmg-item-description {
	margin-top: 0.75rem;
}
.rsmg-item-description {
	text-align: center;
}
.rsmg-item-container .rsmg-social-sharing {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	right: 0.75rem;
	top: 0.75rem;
	z-index: 2;
}

/* Gallery hover */
.rsmg-item-container:hover, .rsmg-item-container:focus {
	box-shadow: 0 0 1.5rem 0 rgba(0,0,0,0.35);
}
.rsmg-item-container:hover .rsmg-item-thumb:before {
	opacity: 0.2;
}
.rsmg-item-container:hover .rsmg-hover-zoom {
	opacity: 1;
}
.rsmg-item-container:hover .rsmg-hover-zoom:before {
	transform: rotate(0deg);
}
.rsmg-item-container:hover .rsmg-hover-zoom:after {
	transform: rotate(45deg);
}
/* End gallery hover */

/* Gallery filters */
.rsmg-gallery-filters {
	list-style-type: none;
	margin: 0 0 1.25rem 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.rsmg-main-container.rsmg-center .rsmg-gallery-filters {
	justify-content: center;
}
.rsmg-gallery-filters &gt; li {
	cursor: pointer;
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0 1.25rem;
	padding: 0.325rem 0.75rem;
	position: relative;
	transition: .2s ease-in-out;
}
.rsmg-gallery-filters &gt; li:before {
	content: '';
	height: 100%;
	width: 2px;
	position: absolute;
	left: -15px;
	top: 0;
	transform-origin: bottom left;
	transform: rotate(15deg);
}
.rsmg-gallery-filters &gt; li:first-of-type:before {
	content: none;
	margin: 0;
}
/* End gallery filters */

/* Gallery search */
.rsmg-gallery-search-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	margin: 0.75rem 1rem 1.25rem 1rem;
	position: relative;
}
input[type="text"].rsmg-gallery-search {
	border-radius: 0;
	border: 2px solid;
	box-shadow: none;
	height: 36px;
	line-height: 1.25;
	padding: 0.325rem 2.5rem 0.325rem 0.325rem;
	width: 33%;
	transition: border-color .2s linear;
}
input[type="text"].rsmg-gallery-search:focus {
	border-radius: 0;
	border: 2px solid;
	box-shadow: none;
	outline: none;
}
.rsmg-gallery-search-clear {
	background-color: transparent;
	border: none;
	position: absolute;
	padding: 0;
	right: 2px;
	top: 2px;
	height: 32px;
	width: 32px;
}
.rsmg-gallery-search-clear:before {
	content: '';
	width: 2px;
	height: 16px;
	position: absolute;
	right: 15px;
	top: 8px;
	transform: rotate(45deg);
}
.rsmg-gallery-search-clear:after {
	content: '';
	width: 2px;
	height: 16px;
	position: absolute;
	right: 15px;
	top: 8px;
	transform: rotate(-45deg);
}
/* End gallery search */
/* End gallery */

/* Loader */
.rsmg-loader-container {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 3;
}
.rsmg-loader {
	border-style: solid;
	border-width: 3px;
	border-radius: 50%;
	position: relative;
	width: 100px;
	height: 100px;
	-webkit-animation: rsmg-loader-spin 2s linear infinite;
	animation: rsmg-loader-spin 2s linear infinite;
}
.rsmg-loader:before {
	border-style: solid;
	border-width: 3px;
	border-radius: 50%;
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	-webkit-animation: rsmg-loader-spin 3s linear infinite;
	animation: rsmg-loader-spin 3s linear infinite;
}
.rsmg-loader:after {
	border-style: solid;
	border-width: 3px;
	border-radius: 50%;
	content: "";
	position: absolute;
	top: 9px;
	left: 9px;
	right: 9px;
	bottom: 9px;
	-webkit-animation: rsmg-loader-spin 1.5s linear infinite;
	animation: rsmg-loader-spin 1.5s linear infinite;
}
/* End loader */

@-webkit-keyframes rsmg-loader-spin {
	0%   {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rsmg-loader-spin {
	0%   {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* Buttons */
.rsmg-block-button {
	border-radius: 0.2rem;
	display: block;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	padding: 0.75rem 1.25rem;
	text-align: center;
	transition: .2s ease;
}
.rsmg-round-button {
	border-radius: 1.25rem;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.75rem 1.25rem;
	text-align: center;
	transition: .2s ease;
}
/* End buttons */

/* Item details */
.rsmg-item-details {
	font-size: 1.15rem;
	margin: 2.5rem auto 0 auto;
    min-height: 100px;
	position: relative;
}
.rsmg-details-container {
	box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.25);
}
.rsmg-item-details a {
	text-decoration: none;
}
.mfp-close-btn-in .rsmg-item-details .mfp-close {
	height: 20px;
	width: 20px;
	line-height: 20px;
	margin: 0.75rem 0;
	left: 0;
	right: auto;
	top: -40px;
	text-align: left;
}
.rsmg-details-body {
	padding: 1.25rem;
	text-align: center;
}
.rsmg-details-image &gt; img {
	display: block;
	position: relative;
	left: 50%;
	object-fit: contain;
	transform: translateX(-50%);
}
.rsmg-details-title {
	font-size: 1.25em;
	margin: 0;
}
.rsmg-details-title + .rsmg-details-description {
	margin-top: 1rem;
}
.rsmg-details-top {
	font-size: 1.15em;
	padding: 0.325rem 0;
	position: absolute;
	right: 0;
	top: -40px;
	height: 40px;
	width: 75%;
	text-align: right;
}
.rsmg-details-top &gt; a, .rsmg-details-top &gt; a:hover, .rsmg-details-top &gt; a:focus {
	font-size: 1em;
	text-decoration: none;
}
.rsmg-details-download {
	transition: color .2s ease;
}
.rsmg-details-download + .rsmg-share {
	margin-left: 1.25rem;
}
.rsmg-details-title + .rsmg-details-bottom, .rsmg-details-description + .rsmg-details-bottom {
	margin-top: 2rem;
}
.rsmg-details-bottom {
	font-size: 0.75em;
	text-align: left;
}
.rsmg-details-bottom i {
	margin-right: 0.325rem;
}
.rsmg-details-tags + .rsmg-details-info {
	margin-top: 0.325rem;
}
.rsmg-details-tags {
	font-weight: 700;
}
.rsmg-details-info &gt; span {
	margin-right: 0.75rem;
}
/* End item details */

/* Image */
.rsmg-main-container[data-layout="image"] {
	position: relative;
}
.rsmg-image-container {
	font-size: 1.25rem;
	box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.25);
	line-height: 1.5;
	margin-bottom: 2.5rem;
}
.rsmg-controls {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 1.25rem 0;
}
.rsmg-controls &gt; [class^="rsmg-"] {
	width: 50%;
}
.rsmg-controls a {
	display: block;
	font-size: 1.25em;
	font-weight: 700;
	padding: 0.75rem 1.25rem;
	transition: .2s ease;
}
.rsmg-controls .rsmg-prev {
	border-top-left-radius: 0.2rem;
	border-bottom-left-radius: 0.2rem;
	text-align: left;
}
.rsmg-controls .rsmg-next {
	border-top-right-radius: 0.2rem;
	border-bottom-right-radius: 0.2rem;
	text-align: right;
}
.rsmg-image-thumb {
	text-align: center;
}
.rsmg-image-thumb &gt; img {
	max-width: 100%;
}
.rsmg-image-body {
	line-height: 1.5;
	padding: 2.5rem;
}
.rsmg-image-buttons {
	display: flex;
	flex-wrap: wrap;
}
.rsmg-image-buttons-left {
	display: flex;
	flex-wrap: wrap;
	align-self: center;
	width: 25%;
}
.rsmg-image-buttons-right {
	align-self: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 75%;
}
.rsmg-image-buttons-left a {
	display: inline-flex;
	width: auto;
}
.rsmg-image-buttons-right a {
	display: inline-flex;
	font-size: 1.25em;
}
.rsmg-image-container .rsmg-share {
	margin-left: 0.75rem;
}
.rsmg-image-download {
	transition: color .2s ease;
}
.rsmg-image-download + .rsmg-share {
	margin-left: 2.5rem;
}
.rsmg-image-title {
	font-size: 1.75em;
	line-height: 1.5;
	margin: 0;
	text-align: center;
}
.rsmg-image-buttons + .rsmg-image-title, .rsmg-image-buttons + .rsmg-image-details, .rsmg-image-buttons + .rsmg-image-bottom {
	margin-top: 2.5rem;
}
.rsmg-image-title + .rsmg-image-description {
	margin-top: 1.25rem;
}
.rsmg-image-title + .rsmg-image-bottom, .rsmg-image-description + .rsmg-image-bottom {
	margin-top: 2.5rem;
}
.rsmg-image-description {
	text-align: center;
}
.rsmg-image-bottom {
	font-size: 0.75em;
}
.rsmg-image-bottom i {
	margin-right: 0.325rem;
}
.rsmg-image-tags + .rsmg-image-info {
	margin-top: 0.75rem;
}
.rsmg-image-tags {
	font-weight: 700;
}
.rsmg-image-info &gt; span {
	margin-right: 0.75rem;
}
/* End image */

/* Social sharing */
@font-face {
	font-family: 'RSMediaGallerySocialIcons';
	src: url('../fonts/rsmg-social-icons-font.eot');
	src: url('../fonts/rsmg-social-icons-font.eot?#iefix') format('embedded-opentype'),
	url('../fonts/rsmg-social-icons-font.woff') format('woff'),
	url('../fonts/rsmg-social-icons-font.ttf') format('truetype'),
	url('../fonts/rsmg-social-icons-font.svg#rsmg-social-icons') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="rsmg-social-icon-"], [class*=" rsmg-social-icon-"] {
	font-family: 'RSMediaGallerySocialIcons';
	font-size: 1.33em;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	text-decoration: inherit;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.rsmg-social-icon-facebook:before {
	content: "\f112";
}
.rsmg-social-icon-pinterest:before {
	content: "\f11f";
}
.rsmg-social-icon-twitter:before {
	content: "\f129";
}
.rsmg-share {
	font-size: 1.25em;
	margin-left: 0.325rem;
	transition: color .2s ease;
}
/* End social sharing */

/* Footer */
.rsmg-footer {
	line-height: 1.5;
	opacity: 0.5;
	padding: 0.75rem;
	text-align: center;
}
/* End footer */

/* Flexbox */
.rsmg-col-1 {
	width: 100%;
}
.rsmg-col-2 {
	width: calc(50% - 1px);
}
.rsmg-col-3 {
	width: calc(33.33% - 1px);
}
.rsmg-col-4 {
	width: calc(25% - 1px);
}
.rsmg-col-5 {
	width: calc(20% - 1px);
}
.rsmg-col-6 {
	width: calc(16.66% - 1px);
}
@media(max-width: 768px) {
	[class*='rsmg-col-'], [class^='rsmg-col-'] {
		width: calc(50% - 1px);
	}
}
@media(max-width: 480px) {
	[class*='rsmg-col-'], [class^='rsmg-col-'] {
		width: 100%;
	}
}
/* End flexbox */

/* Loader */
.rsmg-details-loader {
	font-size: 0;
	border-style: solid;
	border-width: 3px;
	border-color: #ffffff transparent transparent transparent;
	border-radius: 50%;
	margin: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	right: auto;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	-webkit-animation: rsmg-details-loader-spin 2s linear infinite;
	animation: rsmg-details-loader-spin 2s linear infinite;
}
.rsmg-details-loader:before {
	border-style: solid;
	border-width: 3px;
	border-color: #bbbbbb transparent transparent transparent;
	border-radius: 50%;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 88px;
	height: 88px;
	transform: translate(-50%, -50%);
	-webkit-animation: rsmg-details-loader-spin 3s linear infinite;
	animation: rsmg-details-loader-spin 3s linear infinite;
}
.rsmg-details-loader:after {
	border-style: solid;
	border-width: 3px;
	border-color: #777777 transparent transparent transparent;
	border-radius: 50%;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 76px;
	height: 76px;
	transform: translate(-50%, -50%);
	-webkit-animation: rsmg-details-loader-spin 1.5s linear infinite;
	animation: rsmg-details-loader-spin 1.5s linear infinite;
}

@-webkit-keyframes rsmg-details-loader-spin {
	0%   {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		-ms-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		-ms-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes rsmg-details-loader-spin {
	0%   {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		-ms-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		-ms-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.rsmg-details-container.rsmg-loading,
.rsmg-details-container.rsmg-loading ~ .mfp-close {
	opacity: 0;
}
/* End loader */

/* Other */
.rsmg-hidden {
	display: none;
}
/* End other */</pre></body></html>