/*
 * jQuery FlexSlider v2.4.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexSlider {
  margin: 0;
  padding: 0;
  min-height: 270px;
}
.flexSlider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexSlider .slides img {
  width: 100%;
}
.flexSlider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexSlider .slides {
  display: block;
}
* html .flexSlider .slides {
  height: 1%;
}
.no-js .flexSlider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexSlider {
  width: 980px;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexSlider .slides {
  zoom: 1;
}
.flexSlider .slides img {
  height: auto;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 30px;
  height: 60px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-indent: -9999px;
}
.flex-direction-nav a:before {
  display: inline-block;
}
.flex-direction-nav .flex-prev {
  left: -30px;
  background: url(../img/slide_prev.png) no-repeat left center;
}
.flex-direction-nav .flex-next {
  right: -30px;
  background: url(../img/slide_next.png) no-repeat right center;
}
.flexSlider:hover .flex-direction-nav .flex-prev {
  opacity: 1;
  left: -30px;
}
.flexSlider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 0.8;
}
.flexSlider:hover .flex-direction-nav .flex-next {
  opacity: 1;
  right: -30px;
}
.flexSlider:hover .flex-direction-nav .flex-next:hover {
  opacity: 0.8;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  cursor: default;
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 15px;
  text-align: center;
  z-index: 2;
}
.flex-control-nav li {
  margin: 0 6px;
  font-size: 0;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #e4deda;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #794aa8;
}
.flex-control-paging li a.flex-active {
  background: #794aa8;
  cursor: default;
}


/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 720px) {
.flex-direction-nav {
    display: none;
}
.flex-control-nav {
    display: none;
}
.flexOuter {
	height: auto;
}
.flexSlider {
  width: 100%;
  min-height: initial;
  min-height: auto;
}
}