/*
 * jQuery FlexSlider v1.2
 * http://flex.madebymufffin.com
 *
 * Copyright 2011, Tyler Smith
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */


/* FlexSlider Necessary Styles
*********************************/

.flexslider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.flexslider .slides {
    list-style: none;
    margin: 0;
    padding: 0;
    zoom: 1;
    overflow: hidden
}

.flexslider .slides li {
    display: none;
}


/* Hide the slides before the JS is loaded. Avoids image jumping */

.flexslider .slides img {
    max-width: 100%;
    display: block;
}


/* FlexSlider Default Theme
*********************************/

.flexslider {
    position: relative;
}

.flexslider .slides li {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}


/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */

.flexslider-container {
    position: relative;
}


/* Direction Nav */

.flex-direction-nav {
    list-style: none;
    margin: 0;
    padding: 0
}

.flex-direction-nav li a {
    z-index: 100;
    width: 35px;
    height: 63px;
    background: url('../img/icons.png') no-repeat;
    margin: -13px 0 0;
    display: block;
    position: absolute;
    top: 50%;
    cursor: pointer;
    text-indent: -9999px
}


/* set negative margin-top equal to half the height on the directional-nav for perfect vertical centering */

.flex-direction-nav li a.flex-next {
    background-position: 0 -186px;
    right: 20px;
}

.flex-direction-nav li a.flex-next:hover {
    background-position: 0 -73px;
}

.flex-direction-nav li a.flex-prev {
    background-position: 0 -480px;
    left: 20px
}

.flex-direction-nav li a.flex-prev:hover {
    background-position: 0 -367px;
}

.slidetitle {
    position: absolute;
}
