/*
Skin Name: Nivo Slider Default Theme
Skin URI: http://nivo.dev7studios.com
Description: The default skin for the Nivo Slider.
Version: 1.3
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/


.slider-wrapper {
    position: relative;
    z-index: 1;
}

@media all and (min-width: 1001px) {

    .slider-wrapper:before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 20px;
        background: url(slider-shadow.png) no-repeat center top; 
        z-index: 999;       
    }

} 

.nivoSlider {
}
.nivoSlider:after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #fff;
    opacity: .6;
    z-index: 999;
}
.nivoSlider a {
}
.nivoSlider img {
}


/* DIRECTIONAL NAVIGATION */


.nivo-directionNav a {
    background-color: #333;
    background-color: rgba(0,0,0,0.3);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-indent: -9999px;
    overflow: hidden;
    top: 50%;
    margin-top: -25px;
    left: 25px;
    -webkit-transition: background-color .2s ease;
    -moz-transition: background-color .2s ease;
    transition: background-color .2s ease;
}
a.nivo-prevNav {
    background-image: url(arrow-left.png);
    background-position: 13px center;
}
a.nivo-nextNav {
    background-image: url(arrow-right.png);
    background-position: 19px center;
    left: auto;
    right: 25px;
}
.nivo-directionNav a:hover {
    background-color: rgba(0,0,0,0.5);
}


/* BULLET NAVIGATION */

.nivo-controlNav {
    padding: 10px 0 0;
    font-size: 0;
}
.nivo-controlNav a {
    display: inline-block;
    overflow: hidden;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #ccc;
    border: 1px solid rgba(0,0,0,.2);
    text-indent: 999px;
    margin: 0 5px;
}

.nivo-controlNav a.active {
    background: #999;
}

/* THUMBNAIL NAVIGATION */ /*removed*/

/* CAPTION TITLE */

    .nivo-caption {
        position: absolute;
        left: 0;
        bottom: 5px;
        background: #fff;
        background: rgba(255,255,255,.6);
        color: #505050;
        width: 100%;
        z-index: 8;
        padding: 5px 10px 0;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        opacity: 1;
        overflow: hidden;
        display: none;
        filter: alpha(opacity=6);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }