/*
 * jQuery FlexSlider v2.2.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
{
    list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider
{
    margin: 0;
    padding: 0;
}

.flexslider .slides > li
{
    display: none;

    -webkit-backface-visibility: hidden;
} /* Hide the slides before the JS is loaded. Avoids image jumping */

.flexslider .slides li
{
    text-align: center;
}

/* Clearfix for the .slides element */
.slides:after
{
    line-height: 0;

    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: ".";
}
/* 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
*********************************/
.slider
{
    min-width: 960px;
    max-width: 1160px;
    padding: 0 70px;
    margin: 20px auto;
}

.slider__img
{
    height: 458px;

    width: auto;
}

@media screen and (min-width: 960px)
{
    .slider__img
    {
        max-width: 960px;
    }
}

@media screen and (min-width: 1300px)
{
    .slider__img
    {
        max-width: 1160px;
    }
}

.flexslider
{
    position: relative;

    background: transparent;
}

.flex-viewport
{
    max-height: 458px;

    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.loading .flex-viewport
{
    max-height: 300px;
}

/* Direction Nav */
.flex-direction-nav a
{
    position: absolute;
    z-index: 10;
    top: 50%;

    display: block;

    width: 64px;
    height: 139px;
    margin: -70px 0 0;

    cursor: pointer;
    text-decoration:none;

    background: url(../../i/i.png) no-repeat;
}

.flex-direction-nav .flex-prev
{
    left: 0;
    background-position: 0 -176px;
}

.flex-direction-nav .flex-next
{
    right: 0;
    background-position: -71px -175px;
}

.flex-direction-nav .flex-disabled
{
    cursor: default;

    opacity: 0!important;
}
