<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#slides {
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: #A4AEB0;
}
#slides .slides-container {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
#slides .slides-container li {
  margin: 0;
  padding: 0;
  position: relative;
  background: none;
  width: 100%;
}
#slides .slides-container li.current {
  display: block;
  z-index: 1;
}
#slides .slides-container li img {
  -webkit-backface-visibility: hidden;
  -ms-interpolation-mode: bicubic;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#slides .wrapper{
	z-index: 10;
	position: relative;
	height: 100%;
}
#slides header{
	position: absolute;
	width: 100%;
	z-index: 11;
	border-bottom: none;
}
#slides header .wrapper{
	padding-bottom: 45px;
}
#slides{
	min-height: 320px;
}
#slides .cta{
	-webkit-transition: all 350ms ease-in-out;
	-moz-transition: all 350ms ease-in-out;
	-ms-transition: all 350ms ease-in-out;
	-o-transition: all 350ms ease-in-out;
	transition: all 350ms ease-in-out;
}
#slides .cta .more{
	padding-top: 2px;
}
.slides-navigation {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	z-index: 3;
	top: 45%;
	/*display: none;*/
}
.slides-navigation a {  
	background-color: rgba(0, 0, 0, .2);
	-webkit-border-radius: 100px;
	border-radius: 100px;
	color: #fff;
	font: 21px 'bulletsregular';
	position: absolute;
	text-decoration: none;
	display: block;
	text-align: center;
	top: 46%;
	-webkit-transition: all 350ms ease-in-out;
	-moz-transition: all 350ms ease-in-out;
	-ms-transition: all 350ms ease-in-out;
	-o-transition: all 350ms ease-in-out;
	transition: all 350ms ease-in-out;
	width: 46px;
	height: 34px;
	padding-top: 12px;
	padding-right: 0;
	padding-left: 0;
}
.slides-navigation a:hover{
	background-color: rgba(0, 0, 0, .5);
}
.slides-navigation a.prev {
  left: .5em;
}
.slides-navigation a.next {
  right: .5em;
  padding-left: 6px;
  width: 40px;
}
.slides-pagination{
	background: none repeat scroll 0 0 transparent;
	bottom: 25px;
	display: block;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 3;
}
.slides-pagination a {
    border: medium none;
    border-radius: 15px 15px 15px 15px;
    display: inline-block;
    height: 12px;
    margin: 2px;
    transition: all 250ms ease-in-out 0s;
    width: 12px;
    opacity: 1;
}
.slides-pagination a:hover{
	opacity: .6;
}
.slides-pagination a.active{
	border-radius: 15px 15px 15px 15px;
}

@media only screen and (max-width: 768px) {
	.slides-navigation a.prev {
	  left: 0em;
	}
	.slides-navigation a.next {
	  right: 0;
	}
	.slides-navigation a{
		display: none;
	}
}
@media only screen and (max-width: 600px) {
	.slide-img{
		opacity: .2;
	}
	#slides .cta.half, #slides .cta.right.third, #slides .cta.third{
		width: 100%;
		margin-right: 0;
	}
	
	#slides .cta{
		top: 35%;
	}
	#slides .cta.right, #slides .cta.right.third{
		left: 0%;
	}
	
	
}
@media only screen and (max-width: 480px) {
	#slides .cta p{
		display: none;
	}
	
	.slides-navigation a.prev {
	  left: 0em;
	  -webkit-border-radius: 0px 100px 100px 0px;
	          border-radius: 0px 100px 100px 0px;
	}
	.slides-navigation a.next {
	  right: 0;
	  -webkit-border-radius: 100px 0px 0px 100px;
	          border-radius: 100px 0px 0px 100px;
	 width: 18px!important;
	 padding-left: 8px;        
	}
}

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