<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* FlexSlider Necessary Styles
*********************************/
.flexslider .slides &gt; li {
  display: none;
  -webkit-backface-visibility: hidden;
  position: relative;
  -webkit-perspective: 1000;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}
/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides &gt; li:first-child {
  display: block;
}
/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0;
  background: #000;
  position: relative;
  zoom: 1;
  overflow: hidden;
  outline: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.flexslider .slides {
  zoom: 1;
  position: relative;
  z-index: 1;
}
/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  width: 41px;
  height: 41px;
  display: block;
  background-image: url(../img/nesprite.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  text-indent: -9999px;
  z-index: 1;
}
.flex-direction-nav .flex-next {
  right: 4px;
  background-position: -41px -530px;
}
.flex-direction-nav .flex-prev {
  left: 4px;
  background-position: 0 -530px;
}
</pre></body></html>