/*
 * jQuery Blueberry Slider v0.4 BETA
 * http://marktyrrell.com/labs/blueberry/
 *
 * Copyright (C) 2011, Mark Tyrrell <me@marktyrrell.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

.blueberry {
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    float:left;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.blueberry .slides {
    display: block;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    height: 100%;
    width:100%;
    padding:0;
    margin:0;
    z-index:1;
}

.blueberry .slides li {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    margin-right: 0;
    height: 100%;
    width: 100%;


        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
}

.blueberry .slides li div{
    padding: 0px;
    color: #FFFFFF !important;
}

.blueberry .slides li img {
    display: block;
    width: 100%;
    max-width: none;
}

.blueberry .slides li.active {
    display: block;
    position: relative;
}

.blueberry .pager li {
    float: right;
    margin-left: 5px;
    text-indent:-9999px;
    display: inline-block;
    width: 15px;
    height: 15px;
}

.blueberry .pager li.active a {
    opacity:1;
}

.blueberry .pager li a {
    background:#ffffff;
    border-radius: 50%;
    border: 1px solid transparent;
    opacity:0.5;
    display:block;
    width:100%;
    height:100%
}

.pager {
    position: absolute;
    bottom: 14%;
    right: 14%;
    z-index:2;
    padding:0;
}
