/*
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;
    margin: 0;
}

.nivoSlider {
}
.nivoSlider a {
}
.nivoSlider img {
}


/* DIRECTIONAL NAVIGATION */


.nivo-directionNav a {
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 50px;
    text-indent: -9999px;
    overflow: hidden;
    background-color: #fff;
    top: 50%;
    margin-top: -25px;
    opacity: .6;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
a.nivo-prevNav {
    background-image: url(nav-button-left.png);
    left: 0;
}
a.nivo-nextNav {
    background-image: url(nav-button-right.png);
    right: 0;
}
.nivo-directionNav a:hover {
    opacity: .9;
}

/* BULLET NAVIGATION */

.nivo-controlNav {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 102;
	padding: 0 0 40px;
}
.nivo-controlNav a {
	background: url('bullets.png') no-repeat left bottom;
	text-indent: 999px;
	display: inline-block;
	width: 17px;
	height: 17px;
	margin: 0 4px;
    overflow: hidden;
}
.nivo-controlNav a.active {
	background-position: left top;
    background-color: #75bfa1;
    border-radius: 50%;
}
.nivo-controlNav img {
	display: none;
}

/* THUMBNAIL NAVIGATION */

.nivo-thumbs-enabled{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(0,0,0,.2);
}
.nivo-thumbs-enabled a{
    width: 80px;
    display: inline-block; 
    margin: 0 10px;
}

/* CAPTION TITLE */ /*removed*/


/*Removed Navigation on Mobile Devices*/
@media all and (max-width: 1024px) {

    .nivo-directionNav a,
    .nivo-controlNav,
    .nivo-thumbs-enabled {
        display: none;
    }

}
