﻿/*
 * 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 {
    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 img {
        width: 100%;
        display: block;
    }

.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 {
    margin: 0 auto;
    background: #fff;
    position: relative;
    zoom: 1;
    overflow: hidden;
    display:none;
}

.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}

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

.flexslider .slides {
    zoom: 1;
}

.carousel li {
    margin-right: 5px;
}


/* Direction Nav */
.flex-direction-nav
{
   height:22px;
}

.flex-direction-nav li a
{
    width: 22px;
    height: 22px;
    margin: 0;
    position:absolute;
    background: url('jquery.flexslider-direction.html') no-repeat;
    cursor: pointer;
    text-indent: -999em;
    background-size: 44px 22px;
    -webkit-background-size: 44px 22px;
}

.flex-direction-nav li .flex-next
{
     right:0;
     background-position: -22px 0;
}
.flex-direction-nav li .flex-prev
{
    left:0;
}

.flex-direction-nav li .disabled
{
    opacity: .3;
    filter: alpha(opacity=30);
    cursor: default;
}

/* Control Nav */
.flex-control-nav
{
    width: 100%;
    text-align: center;
    position: relative;
    padding-top: 10px;
    height: 22px;
}
.flex-control-nav li
{
    margin: 0 0 0 5px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.flex-control-nav li:first-child
{
    margin: 0;
}
.flex-control-nav li a
{
    width: 13px;
    height: 13px;
    display: block;
    background: url('jquery.flexslider-control.html') no-repeat;
    cursor: pointer;
    text-indent: -999em;
    background-size: 13px 39px;
    -webkit-background-size: 13px 39px;
    overflow:hidden;
}
.flex-control-nav li a:hover
{
    background-position: 0 -13px;
}
.flex-control-nav li a.flex-active
{
    background-position: 0 -26px;
    cursor: default;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5)
{
    .flex-direction-nav li a
    {
        background-image: url('jquery.flexslider-direction@2x.png');
    }
    .flex-control-nav li a
    {
        background-image: url('jquery.flexslider-control@2x.png');
    }
}
