/*
 * jQuery Nivo Slider v2.7.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/* The Nivo Slider styles */
.nivoSlider {
    position:relative;
    width:900px;
    height: 410px;
    
}
.nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
}
/* 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;
}
/* The slices and boxes in the Slider */
.nivo-slice {
    display:block;
    position:absolute;
    z-index:5;
    height:100%;
}
.nivo-box {
    display:block;
    position:absolute;
    z-index:5;
}
/* Caption styles */
.nivo-caption {
    position:absolute;
    left:0px;
    bottom:0px;
    background:rgba(255, 255, 255, 0.7);
    color:#000;
    opacity:1.0; /* Overridden by captionOpacity setting */
    width:100%;
    z-index:8;
}

.caption-wrapper {
    padding-top: 5px;
}

.nivo-caption p {
    padding: 0 10px 10px;
    margin:0;
    font-size: 14px;
}

.nivo-caption h4 {
    margin: 5px 10px 0px;
    font-size:16px;
} 

.nivo-caption a {
    display:inline !important;
    text-decoration: underline;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a, .directionNav-preview a {
    position:absolute;
    top:40%;
    z-index:9;
    cursor:pointer;
}
.nivo-prevNav {
    left:30px;
}
.nivo-nextNav {
    right:30px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
    position:relative;
    z-index:9;
    cursor:pointer;
}
.nivo-controlNav a.active {
    font-weight:bold;
}

.nivo-controlNav {
    text-align: left;
    position: absolute;
    width: 285px;
    bottom: 10px;
    right: 5px;
    z-index: 9;
    overflow: hidden;
}

.nivo-controlNav a {
    display: inline-block;
    *zoom: 1;
    *display: block;
    width: 25px;
    height: 14px;
    background: url(bullet-map.png) no-repeat;
    background-position: 0 1px;
    /*text-indent:-9999px;*/
    color: transparent;
    border: none;
    margin: 0px;
    overflow: hidden;
   
}
.nivo-controlNav a:hover,
.nivo-controlNav a.active {
    background-position: 0 100%;
}

.nivo-directionNav a {
    display: block;
    width: 30px;
    height: 70px;
    text-indent: -9999px;
    border: none;
    /*background-color: #393939;
    background-color: rgba(57, 57, 57, 0.8);*/
    background-repeat: no-repeat;
    background-position: center;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
a.nivo-nextNav {
    background-image: url(next.png);
}
a.nivo-prevNav {
    background-image: url(prev.png);
}
.nivo-controlNav a.nivo-nextNav {
    margin-left: 6px;
    background-position: -28px 0px;
    right: 15px;
}
.nivo-controlNav a.nivo-prevNav {
    margin-right: 6px;
    background-position: 0px 0px;
    left: 15px;
}
.nivoSlider:hover .nivo-directionNav a {
    filter: alpha(opacity=65);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: .6;
}
.directionNav-preview a {
    display: block;
    width: 42px;
    height: 42px;
    text-indent: -9999px;
    border: none;
    background-color: #393939;
    background-color: rgba(57, 57, 57, 0.8);
    background-repeat: no-repeat;
    background-position: center;
    filter: alpha(opacity=1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    opacity: 1;
    }

#gallery-content {padding-right:20px;}

.hide {
    display:none;
    }