/*
 * 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 {
    margin: -25px auto 0 auto;
    padding: 0px;
}

    .blueberry .slides {
        display: block;
        position: relative;
    }

        .blueberry .slides li {
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
        }

            .blueberry .slides li img {
                display: block;
                width: 100%;
                max-width: none;
            }

            .blueberry .slides li.active {
                display: block;
                position: relative;
            }

    .blueberry .crop li img {
        width: auto;
    }

    .blueberry .pager {
        height: auto;
        text-align: center;
    }

        .blueberry .pager li {
            display: inline-block;
            zoom: 1; /* IE 7 fix for horizontal list */
            *display: inline; /* IE 7 fix for horizontal list */
        }

            .blueberry .pager li a,
            .blueberry .pager li a span {
                display: block;
                height: 15px;
                width: 15px;
                outline: none;
            }

            .blueberry .pager li a {
                padding: 49px 8px;
                -webkit-border-radius: 6px;
                -moz-border-radius: 6px;
                border-radius: 6px;
            }

                .blueberry .pager li a span {
                    overflow: hidden;
                    background: #d66b0d;
                    text-indent: -9999px;
                    -webkit-border-radius: 9px;
                    -moz-border-radius: 9px;
                    border-radius: 9px;
                    cursor: pointer;
                    transition: background .5s, opacity .5s;
                }

            .blueberry .pager li.active a span {
                background: #404040;
            }


    .blueberry ul {
        padding: 0;
        margin: 0px 0 0px 0px;
    }

.content3 .blueberry ul li {
    list-style: disc;
    padding: 0px 0px;
    margin: 0px 0 0px 0px;
}

/*To make sure the slider does not collapse. Floated the list items so they become block, cleared the parent so its forced to be block and get the height*/
.blueberry .slides li {
    float: left;
}

@media all and (max-width: 767px) {

    .blueberry .pager {
        height: auto;
        text-align: center;
    }

        .blueberry .pager li a {
            padding: 49px 8px 0px 8px;
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            border-radius: 6px;
        }
}