/*
 * jQuery Nivo Slider v3.2
 * https://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * https://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.slider_block {
	position: relative;
	box-shadow:2px 2px 0 rgba(0,0,0,0.1);
}
.slider_gradient {
	position:absolute;
	z-index:1000;
	left:0;
	top:0;
	width:100%;
	height:100%;
/*	background:url(../themes/nivoslider/slider_gradient.png); */
}
.nivoSlider {
	overflow:hidden;
	position: relative;
	width:100%;
	height:auto;
	margin-top: 10px;	
	margin-bottom: 10px;
	border: solid 1px rgba(0,0,0,0.5);
	border-radius: 5px;
	box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.3), 0px 1px 0px 0px rgba(255,255,255,0.125);	
}
.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 {
	display: none;
	position:absolute;
	z-index:8;
	left:-260px;
	top:0px;
	width:200px;
	padding: 30px;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	display:block;
	position:absolute;
	z-index:1001;
	top:50%;
	cursor:pointer;
	width:39px;
	height:39px;
	margin-top:-20px;
	text-indent:-9999px;
	opacity:0.5;
	filter: alpha(opacity=50);
	background-image:url(../themes/nivoslider/slider_nav.png);
	background-repeat:no-repeat;
}
.nivo-directionNav a:hover {
	opacity:1;
	filter: alpha(opacity=100);
}
.nivo-prevNav {
	left:30px;
	background-position:0 0;
}
.nivo-nextNav {
	right:30px;
	background-position:-40px 0;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	display:none !important;
	position:absolute;
	left:30px;
	bottom:30px;
	height:11px;
}
.nivo-controlNav a {
	cursor:pointer;
	display:inline-block;
	margin-right:4px;
	width:12px;
	height:11px;
	border-radius:50%;
	background:#e4e4e4;
	text-indent:-999px;
}
.nivo-controlNav a:hover,
.nivo-controlNav a.active {
	background:#a8a8a8;
}