/*
 * jQuery FlexSlider v2.7.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 {
    margin: 0;
    position: relative;
    zoom: 1;
}

.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 {

    position: absolute;
    top: 50%;

    width: 44px;
    height: 57px;

    margin-top: -29px;

    z-index: 1;

    cursor: pointer;
}

.flex-direction-nav .flex-prev {
    left: 0;
    background: url("../img/button-slider-prev.png") no-repeat;
}

.flex-direction-nav .flex-next {
    right: 0;
    background: url("../img/button-slider-next.png") no-repeat;
}

.flex-control-nav {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.flex-control-nav li {

    margin-right: 5px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.flex-control-paging li a {

    background: #90C900;

    width: 25px;
    height: 12px;
    border: 1px solid #90C900;
    border-radius: 2px;
    cursor: pointer;
    text-indent: -9999px;
    opacity: 0;
    display: block;
}

.flex-control-paging li a.flex-active {
    opacity: 1;
}