/*
 * jQuery FlexSlider v2.6.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 {
  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;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.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 .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.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 {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 27px;
  height: 49px;
  margin: -25px 0 0;
  position: absolute;
  top: 50%;
  z-index: 12;
  overflow: hidden;
  opacity: 0.6;
  cursor: pointer;
  background: url('../images/flexslider-arrows.png') no-repeat;
  text-indent: -999px;
  overflow: hidden;
}
.flex-direction-nav .flex-prev {
  left: 30px;
}
.flex-direction-nav .flex-next {
  right: 30px;
  background-position: -27px 0;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-control-nav {
  width: 500px;
  position: fixed;
  bottom: 104px;
  right: 50%;
  text-align: center;
  z-index: 11;
}
.flex-control-nav li {
  margin: 0;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
.flex-control-nav li a {
  width: 14px;
  height: 14px;
  padding: 1px;
  display: block;
  background: none;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 50%;
  transition: none;
}
.flex-control-nav li a:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  margin: 1px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.flex-control-nav li a.flex-active {
  margin: 1px 2px 0 2px;
  padding: 0;
  border-color: transparent;
  cursor: default;
  border: 2px solid #ffffff;
}
.flex-control-nav li a.flex-active:before {
  width: 6px;
  height: 6px;
  margin: 2px;
  background: #ffffff;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
