<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.iosSlider {
	clear: both;
	height: 509px;
	left: 0;
	overflow: hidden;/* required */
	position: relative;/* required */
	top: 0;
	width: 1110px;
}
.iosSlider .slider {
	height: 100%; /* required */
	width: 100%; /* required */
}
.iosSlider .slider .item {
	color: #fff !important;
	float: left;/* required */
	height: 509px;/* required */
	margin: 0;
	width: 1110px;
}
.iosSliderButtons {
	height: 10px;
	left: auto;/* Required */
	margin: 0 auto;
	position: relative; /* Required */
	right: auto; /* To show the 8th button - otherwise it's clipped*/
	top: -20px;/* Required */
	width: 130px;/* Required */
	z-index:  999;
}
.iosSliderButtons .button {
	background: #eee;
	border-radius: 50%;
	border: 1px solid #ccc;
	float: left;
	height: 12px;
	margin: 0 10px 0 0;
	width: 12px;
}
.iosSliderButtons .button:last-child {
	margin-right: 0;
}
.iosSliderButtons .button:hover {
	background: #ccc;
}
.iosSliderButtons .selected {
	background-color: #2f86af;
}
/* Only Show Prev/Next Slider buttons when viewport is large */
@media (min-width: 1200px) {
	#nextSlide,
	#previousSlide {
		background: #ccc none repeat scroll 0% 0%;
		border: 1px solid #ccc;
		color: #495745;
		cursor: pointer;
		display: block;
		height: 509px;
		left: 1110px;
		opacity: 0.3;
		overflow: hidden;
		position: relative;
		right: 0;
		text-align: center;
		top: -509px;
		transition: all 0.5s ease-in 0s;
		width: 30px;
		z-index: 100;
	}
	#previousSlide {
		left: -30px;
		top: -1018px;
	}
	#nextSlide:hover,
	#previousSlide:hover {
		color: #fff;
		opacity: 1;
	}
	#nextSlide::before,
	#previousSlide::before {
		content: "\203A";
		display: inline-block;
		font-size: 55px;
		padding-top: 209px;
	}
	#previousSlide::before {
		content: "\2039";
	}
}
@media (max-width: 1200px) {
	.iosSlider {
		height: 417px;
	}
}
@media (max-width: 991px) {
	.iosSlider {
		height: 316px;
	}
}
@media (max-width: 600px) {
	.iosSlider {
		height: 250px;
	}
}
@media (max-width: 500px) {
	.iosSlider {
		height: 215px;
	}
}
@media (max-width: 450px) {
	.iosSlider {
		height: 180px;
	}
}
@media (max-width: 350px) {
	.iosSlider {
		height: 132px;
	}
}
</pre></body></html>