/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */


/* The Nivo Slider styles */

.nivoSlider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.nivoSlider img {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: none;
}

.nivo-main-image {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}


/* If an image is wrapped in a link */

.nivoSlider a.nivo-imageLink {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 6;
    display: none;
    background: white;
    filter: alpha(opacity=0);
    opacity: 0;
}


/* The slices and boxes in the Slider */

.nivo-slice {
    display: block;
    position: absolute;
    z-index: 5;
    height: 100%;
    top: 0;
}

.nivo-box {
    display: block;
    position: absolute;
    z-index: 5;
    overflow: hidden;
}

.nivo-box img {
    display: block;
}


/* Caption styles */

.nivo-caption {
  background: transparent none repeat scroll 0 0;
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  display: none;
  left: 22%;
  opacity: 1;
  overflow: hidden;
  padding: 5px 10px;
  position: absolute;
  top: 35%;
  width: 100%;
  z-index: 8;
}

.nivo-caption p {
    padding: 5px;
    margin: 0;
}

.nivo-caption a {
    display: inline !important;
}

.nivo-html-caption {
    display: none;
}


/* Direction nav styles (e.g. Next & Prev) */

.nivo-directionNav a {
    background: #3c3c3c none repeat scroll 0 0;
    color: #fff;
    cursor: pointer;
    height: 100px;
    line-height: 100px;
    position: absolute;
    text-align: center;
    top: 35%;
    width: 100px;
    z-index: 9;
}

.nivo-directionNav a:hover {
    background: #dd443c none repeat scroll 0 0;
    color: #fff;
}

.nivo-prevNav {
    border-radius: 0 100% 100% 0;
    left: -50px;
}

.nivo-prevNav i {
    margin-left: 35px;
}

.nivo-nextNav {
    border-radius: 100% 0 0 100%;
    right: -50px;
}

.nivo-nextNav i {
    margin-right: 35px;
}


/* Control nav styles (e.g. 1,2,3...) */

.nivo-controlNav {
    bottom: 0;
    left: 0;
    padding: 15px 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 999;
}

.nivo-controlNav a {
    border: 2px solid #fff;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    height: 25px;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0 5px;
    text-align: center;
    width: 25px;
}

.nivo-controlNav a.active,
.nivo-controlNav a:hover {
    border-color: #dd443c;
    color: #dd443c;
    font-weight: bold;
}
