<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html.swipebox {
	overflow: hidden!important;
}
#swipebox-overlay img {
	border: none !important;
	height: 18px;
}
#swipebox-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999!important;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-ms-touch-action : none;
	touch-action: none;
}
#swipebox-slider {
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	white-space: nowrap;
	position: absolute;
	display: none;
	-ms-touch-action : none;
	touch-action: none;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
#swipebox-slider .slide {
	height: 100%;
	width: 100%;
	line-height: 1px;
	text-align: center;
	display: inline-block;
}
#swipebox-slider .slide:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}
#swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
	background: none;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	padding: 5%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;
	left: 0;
}
#swipebox-overlay a, #swipebox-caption {
	position: absolute;
	z-index: 999;
	height: 35px;
	width: 100%;
	line-height: 40px;
}
#swipebox-overlay a {
	width: 39px;
}
#swipebox-cell {
	display: table-cell;
}
#swipebox-action.visible-bars {
	bottom: 0;
}
#swipebox-action.force-visible-bars {
	bottom: 0!important;
}
#swipebox-caption {
	top: -50px;
	width: auto;
	text-align: center;
}
#swipebox-caption.visible-bars {
	top: 5px;
}
#swipebox-caption.force-visible-bars {
	top: 0!important;
}


#swipebox-prev, #swipebox-next, #swipebox-close {
	/*border: none!important;*/

	text-decoration: none!important;
	cursor: pointer;
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	font-size: 16px;
	text-align: center;
	color: #000000;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	background: rgba(255,255,255,.8);
	/*background: -moz-linear-gradient(left, #EA9000 0%, #EA7600 100%);
	background: -webkit-linear-gradient(left, #EA9000 0%,#EA7600 100%);
	background: linear-gradient(to right,
	#EA9000 0%,
	#EA7600 100%);
	background-clip: border-box;
	background-clip: border-box;
	background-clip: border-box;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071DE', endColorstr='#1D428A',GradientType=1 );*/
}
#swipebox-close {
	border-bottom: 2px solid #E31913;
}
#swipebox-prev:hover, #swipebox-next:hover, #swipebox-close:hover {
	color: #000;
}
#swipebox-overlay a#swipebox-close {
	left: 0;
	width: 88px;
	padding: 5px;
	top: calc(50% - 60px);
}

#swipebox-counter {
	left: 0;
	color: #000;
	width: 78px;
	padding: 10px;
	top: calc(50% - 102px);
	position: absolute;
	z-index: 999;
	text-align: center;
	font-family: canada-type-gibson, sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	background-color: rgba(255,255,255,.8);
}
#swipebox-prev {
	left: 0;
	padding: 5px;
	top: calc(50% - 13px);
}
#swipebox-next {
	left: 49px;
	padding: 5px;
	top: calc(50%  - 13px);
}
#swipebox-prev.disabled, #swipebox-next.disabled {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
	opacity: 0.3;
	cursor: default;
}
#swipebox-prev.disabled:hover, #swipebox-next.disabled:hover {
	color: #fff;
}
#swipebox-slider.rightSpring {
	-moz-animation: rightSpring 0.3s;
	-webkit-animation: rightSpring 0.3s;
}
#swipebox-slider.leftSpring {
	-moz-animation: leftSpring 0.3s;
	-webkit-animation: leftSpring 0.3s;
}
@-moz-keyframes rightSpring {
	0% {
		margin-left: 0px;
	}
	50% {
		margin-left: -30px;
	}
	100% {
		margin-left: 0px;
	}
}
@-moz-keyframes leftSpring {
	0% {
		margin-left: 0px;
	}
	50% {
		margin-left: 30px;
	}
	100% {
		margin-left: 0px;
	}
}
@-webkit-keyframes rightSpring {
	0% {
		margin-left: 0px;
	}
	50% {
		margin-left: -30px;
	}
	100% {
		margin-left: 0px;
	}
}
@-webkit-keyframes leftSpring {
	0% {
		margin-left: 0px;
	}
	50% {
		margin-left: 30px;
	}
	100% {
		margin-left: 0px;
	}
}

/* Skin  --------------------------*/
#swipebox-overlay {
	background: rgb(255,255,255);
	/*background: rgba(255,255,255,0.98);*/
}
#swipebox-caption {
	height: auto;
	background-color: #E31913;
	color: #FFFFFF;
	font-size: 15px;
	line-height: normal;
	padding: 15px;
	opacity: 1;
}
#swipebox-caption p {
	color: #FFFFFF;
	font-size: 15px;
	margin: 0;
}

#swipebox-title {
	background-color: rgba(255,255,255,.8);
	color: #000;
	font-size: 18px;
	font-weight: 600;
	padding: 12px 20px;
	/* text-transform: uppercase; */
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	letter-spacing: 1px;
	line-height: 24px;
	border-bottom: 2px solid #E31913;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

/*-------------------- MEDIA QUERY --------------------*/
@media screen and (max-width: 1024px) {
	#swipebox-caption p {
		max-width: 920px;
		padding-top: 5px;
		padding-bottom: 5px;
		line-height: 20px;
	}
}

@media screen and (max-width: 800px) {
	#swipebox-close {
		left: 0;
	}
	#swipebox-prev {
		right: 60px;
	}
	#swipebox-next {
		right: 0;
	}
}

@media screen and (max-width: 768px) {
	#swipebox-close {
		left: auto;
		right: 0;
	}
	#swipebox-prev {
		right: auto;
	}
	#swipebox-next {
		right: 10px;
	}
	#swipebox-caption p {
		max-width: 660px;
		padding-top: 5px;
		padding-bottom: 5px;
		line-height: 20px;
	}
}

@media screen and (max-width: 767px) {

	#swipebox-overlay a#swipebox-close {
		left: calc(50% - 40px);
		width: 80px;
		padding: 5px 0;
		top: 0;
	}
	#swipebox-counter {
		text-align: center;
		left: calc(50% - 40px);
		width: 80px;
		padding: 5px 0;
		top: 47px;

	}

	#swipebox-prev, #swipebox-next  {
		display: none;

	}
	#swipebox-next {
		right: 5px;
	}
	#swipebox-caption p {
		max-width: 460px;
		padding-top: 5px;
		padding-bottom: 5px;
		line-height: 18px;
		font-size: 13px;
	}
	#swipebox-title {
		text-align: center;
		border-bottom: 0;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 10;
	}
}

@media screen and (max-width: 320px) {
	#swipebox-close {
		left: auto;
		right: 5px!important;
		top: 13px;
	}
	#swipebox-caption p {
		max-width: 240px;
		padding-top: 5px;
		padding-bottom: 5px;
		line-height: 18px;
		font-size: 13px;
	}
}</pre></body></html>