/*
 * 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: 420px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    float:left;
    position: relative;
}


.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;
    background-size: cover;
    margin-right: 0;
    height: 100%;
    width: 100%;
}

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

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

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

.blueberry .pager {
    float: left;
    z-index:2;
    padding:0;
    margin-left: -13px !important;
}

.pagercontainer{
    margin-top: -70px;
    z-index: 9;
    position: relative;
    height: auto;
    overflow: visible;
}

.blueberry .pager li {
    float: left;
    margin-right: 5px;
    display: inline-block;
    width: 1em;
    height: 1em;
}

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

.blueberry .pager li a {
    opacity:0.5;
    display:block;
    width:100%;
    height:100%
}

.blueberry .pager li a span .fa-circle-o{
    color: #FFFFFF;
}
.blueberry .pager li a span .fa-circle{
    color: #4d649b;
}

