/*
 * 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 {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* FlexSlider Necessary Styles
*********************************/

.flexslider {
    margin: 0;
    padding: 0;
}

.flexslider .slides > li {
    display: none;
}

/* 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 {
    height: 0;

    clear: both;
    content: ".";
    display: block;
    line-height: 0;
    visibility: hidden;
}

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-wrapper {
    padding-bottom: 30px;
}

.flexslider {
    position: relative;

    margin: 0 0 50px 0;
    padding: 0;
    zoom: 1;
}

.flexslider .slides {
    list-style: none;
    padding-left: 0 !important;
    zoom: 1;
}

.flexslider .slides > li {
    position: relative;

    list-style: none;
}

/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */

.flex-container {
    position: relative;

    zoom: 1;
}

/* Caption style */

/* IE rgba() hack */

.flexslider .flex-caption {
    background: none;
    -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80000000,endColorstr=#80000000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80000000,endColorstr=#80000000);
    zoom: 1;
}

.flexslider .flex-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 96%;

    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 14px;
    padding: 2%;
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
}

/* Direction Nav */

.flexslider .flex-direction-nav {
    height: 0;

    list-style: none;
    margin: 0;
    padding: 0;
}

.flexslider .flex-direction-nav li {
    list-style: none;
}

.flex-direction-nav a
{
    opacity: 1;

}

.flexslider .flex-direction-nav li a {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 50px;
    cursor: pointer;
    display: block;
    margin: auto;
    text-indent: -9999px;

}

.flexslider .flex-direction-nav li .flex-next {
    right: 10px;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.flexslider .flex-direction-nav li .flex-prev {
    left: 10px;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.flexslider .flex-direction-nav li .disabled {
    cursor: default;
    filter: alpha(opacity=30);
    opacity: .3;
}

/* Control Nav */

.flexslider .flex-control-nav {
    position: absolute;
    bottom: -30px;
    width: 100%;

    line-height: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.flexslider .flex-control-nav li {
    *display: inline;
    display: inline-block;
    margin: 0 0 0 5px;
    zoom: 1;
}

.flexslider .flex-control-nav li:first-child {
    margin: 0;
}

.flexslider .flex-control-nav li a.flex-active {
    background-position: 0 bottom;
    cursor: default;
}

