/*
 * jQuery Nivo Slider v2.4
 * https://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * https://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	width:100%;
	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:60;
	display:none;
}

.nivoSlider a.nivo-imageLink img {
	width:100% !important;
}

/* The slices in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:50;
	height:100%;
	width:100% !important;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:50;
}

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:7px;
	bottom:0px;
	color:#fff;
	margin-top:152px !important;
	opacity:0.8; /* Overridden by captionOpacity setting */
	z-index:888;
	top:-10px;
	background-color:rgb(36, 51, 78);
	height:30px;
	font-size: 22px;
	height: 1.5em;
	text-shadow: black 1px 1px;
    -moz-box-shadow: 2px 3px 10px #000;
    box-shadow: 2px 3px 10px #000;
    -webkit-box-shadow: black 2px 3px 10px;
}
.nivo-caption p {
	padding:5px;
	margin:0;
	text-align:right;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
    }
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9999;
	cursor:pointer;
}
.nivo-prevNav {
	left:5px;
}
.nivo-nextNav {
	right:5px;
	transform: rotate(180deg);
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:998;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}
@media only screen and (max-width: 767px) {
.nivo-caption {
	margin-top:100px;
	width:100%;
}

}