/*
 * 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)
 */

/* Browser Resets */

.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
    outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}
/* FlexSlider Necessary Styles
*********************************/

.flexslider .slides > li {
    display: none;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flexslider .slides > li a {
    padding: 0;
}
.flexslider .slides img {
    margin: 0;
}
.flex-pauseplay span {
    text-transform: capitalize;
}
/* 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 > li:first-child {
    display: block;
}
/* FlexSlider Default Theme
*********************************/

.flexslider {
    position: relative;
    margin: 0 auto;
    clear: both;
}
.flex-viewport {
    position: relative;
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.flexslider .slides {
    margin-right: 0px;
    zoom: 1;
}
/* Direction Nav */

.flex-direction-nav {
    *height: 0;
    position: absolute;
    margin-top: -20px;
    width: 100%;
    top: 50%;
    left: 0;
    pointer-events: none;
}
.flex-direction-nav li {
    float: none;
    margin: 0!important;
}
.flex-direction-nav a:hover {
    color: #666!important;
}
.flex-direction-nav .flex-next {
    right: -5%;
}
.flex-direction-nav .flex-prev {
    left: -5%;
}

.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 1;
    cursor: pointer;
    font-family: 'Dosis', 'Open Sans', Arial, Helvetica, sans-serif;
    color: #fcb34c;
    font-size: 0;
    pointer-events: all;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
    font-family: "flexslider-icon";
    font-size: 40px;
    display: inline-block;
    content: '<';
}
.flex-direction-nav a.flex-next:before {
    content: '>';
}
.flex-direction-nav .flex-prev {
    left: 30px;
}
.flex-direction-nav .flex-next {
    right: 30px;
    text-align: right;
}
.flexslider .flex-direction-nav .flex-prev:hover,
.flexslider .flex-direction-nav .flex-next:hover {
    color: #fff!important;
}
.flexslider-controllers {
    position: relative;
}
/* Control Nav */

.flex-control-nav {
    position: relative;
    width: 100%;
    left: 0;
    text-align: center;
    clear: both;
    z-index: 10;
}
.flex-control-nav ol {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.flex-control-nav li {
    margin: 0 10px 3%;
    padding: 0;
    display: inline-block;
    *display: inline;
}
.flex-control-paging li a {
    padding: 0;
    width: 10px;
    height: 10px;
    display: block;
    background: #883098;
    text-indent: -9999px;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background linear .15s;
    -moz-transition: background linear .15s;
    -o-transition: background linear .15s;
    -ms-transition: background linear .15s;
    transition: background linear .15s;
}
.flex-control-paging li a.flex-active {
    background: #fff;
}
.flex-control-paging li a:hover {
    background: #999;
}
