<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media all {
    .featherlight {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2147483647;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.7);
    }
    .featherlight:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -.25em
    }
    .featherlight .featherlight-content {
        position: relative;
        text-align: left;
        vertical-align: middle;
        display: inline-block;
        overflow: auto;
        padding: 0;
        margin: 0;
        max-height: 100%;
        cursor: auto;
        white-space: normal;
        background-color: #fff;
    }
    .featherlight .featherlight-inner {
        display: block
    }
    .featherlight-next,.featherlight-previous,.featherlight .featherlight-close-icon {
        font-family: 'FontAwesome';
		display: block;
        color: #fff;
		position: fixed;
		cursor: pointer;
		/* preventing text selection */
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
        line-height: 60px;
        width: 60px;
        height: 60px;
        border-radius:100%;
        font-size: 30px;
        text-align:center;
	}
    .featherlight-next,.featherlight-previous {
		top: 50%;
        margin-top:-30px;
        -webkit-transition: background 0.2s linear;
        -moz-transition: background 0.2s linear;
        transition: background 0.2s linear;
	}
    .featherlight-previous {
		left: 20px;
        padding-right:5px;
	}
    .featherlight-next {
		right: 20px;
        padding-left:5px;
	}
    .featherlight .featherlight-close-icon {
        line-height: 58px;
        top: 20px;
        right: 20px;
        -webkit-transition: color 0.2s linear;
        -moz-transition: color 0.2s linear;
        transition: color 0.2s linear;
    }
    .featherlight .featherlight-image {
        width: 100%
    }
    .featherlight-iframe .featherlight-content {
        padding: 0
    }
    .featherlight iframe {
        border: none
    }
    .featherlight * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }
}

@-webkit-keyframes featherlightLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes featherlightLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.featherlight-loading .featherlight-content {
    -webkit-animation: featherlightLoader 1s infinite linear;
    animation: featherlightLoader 1s infinite linear;
    background: transparent;
    border-width: 8px;
    border-style: solid;
    border-radius: 80px;
    width: 80px;
    height: 80px;
    min-width: 0;
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    border-right-color: #ffffff;
}

.featherlight-loading .featherlight-content &gt; * {
    display: none!important
}

.featherlight-loading .featherlight-close,
.featherlight-loading .featherlight-inner {
    display: none
}

@media only screen and (max-width: 480px) {
    .featherlight-next,.featherlight-previous,.featherlight .featherlight-close-icon {
        line-height: 40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .featherlight .featherlight-close-icon {
        top: 10px;
        right: 10px;
    }
    .featherlight-previous {
		left: 10px;
	}
    .featherlight-next {
		right: 10px;
	}
}</pre></body></html>