<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * jQuery FlexSlider v1.4
 * http://flex.madebymufffin.com
 *
 * Copyright 2011, Tyler Smith
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {width: 100%; margin: 0px 0 0 0; padding: 0;}
.flexslider .slides li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; display: block;}


/* FlexSlider Default Theme
*********************************/
.flexslider { position: relative; }
.flexslider .slides{padding:0; margin:0; list-style: none;}
.flexslider .slides  li {position: relative;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flexslider-container {position: relative;}


/* Caption style */
.flex-caption {}

/* Direction Nav */
.flex-direction-nav {padding:0; margin:0; list-style: none;}
.flex-direction-nav li a {width: 46px; height: 80px; margin: -40px 0 0; display: block; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; z-index:10; } /* set negative margin-top equal to half the height on the directional-nav for perfect vertical centering */
.flex-direction-nav li a.flex-next { background:url('../images/next.png') left top no-repeat; right: 0px; outline:none;}
.flex-direction-nav li a.flex-prev { background:url('../images/back.png') left top no-repeat; left: 0px; outline:none;}
@media (max-width: 1024px) {
  .flex-direction-nav  {
  display:none !important
  }
}
/* Control Nav */
.flex-control-nav{padding:0; margin:0; list-style: none;}
.flex-control-nav {
  width:100%;
  height:18px;
	position: absolute; 
	bottom: 16px; 
	left: 0px;
	z-index:10;
	text-align:left;
	padding:0px 0 0 0;
	z-index:10;
	text-align:center;
}
.flex-control-nav li {
	margin: 0 2px 0 2px; 
	display:inline
}
.flex-control-nav li a {
	width: 17px; 
	height: 18px; 
	padding:18px 0 0 17px;
	background:url('../images/points.png') left top no-repeat;
	cursor: pointer; 
	text-indent: -9999px;
	line-height:0px;
	font-size:0px;
}
.flex-control-nav li a:hover {	background:url('../images/points.png') left -18px no-repeat;}
.flex-control-nav li a.flex-active {	background:url('../images/points.png') left -18px no-repeat; cursor: default;}</pre></body></html>