/*
 * jQuery Nivo Slider v3.1
 * 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: 100%;
	margin: 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;
}
/* 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 {
	position: absolute;
	left: 0px;
	bottom: 13%;
	background: #7da516;
	color: #fff;
	height: 31%;
	min-height: 190px;
	min-width: 300px;
	width: 40%;
	z-index:8;
	padding: 20px 60px 30px 45px;
	overflow: hidden;
	display: none;
	font-size: 120%;
	font-style: italic;
	text-align: left;

	opacity: 0.90;
	-moz-opacity: 0.90;
	filter:alpha(opacity=90);
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.nivo-caption h1 {
	font-weight: normal;
	color: #fff;
	font-size: 160%;
	font-style: normal;
	margin: 0 0 20px 0;
}

.nivo-caption a {
	font-weight: normal;
	color: #fff;
}

.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top: 30%;
	z-index:9;
	cursor:pointer;
}

.nivo-prevNav {
	left:115px;
	height: 130px;
	width: 130px;
	/*background: url(/_local/images/prev.png) no-repeat center center;*/
}

a.nivo-prevNav:hover {
	background: url(/_local/images/prev_hover.png) no-repeat center center;
}

.nivo-nextNav {
	right: -10%;
	height: 40%;
	width: 30%;
	background: url(/_local/images/nextSlide.png) no-repeat center center;
	opacity: 0.5;	
}

a.nivo-nextNav:hover {
	background: url(/_local/images/nextSlide.png) no-repeat center center;	
	opacity: 0.99;	
}

@media only screen and (max-width: 750px) {
	a.nivo-nextNav {
		display: none;
	}
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 15px 0;
	visibility: hidden;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}

@media only screen and (min-width: 3501px) and (max-width: 4096px) {
	.nivo-caption{
		bottom: 44%;
	}
}

@media only screen and (min-width: 2801px) and (max-width: 3500px) {
	.nivo-caption{
		bottom: 40%;
	}
}

@media only screen and (min-width: 2047px) and (max-width: 2800px) {
	.nivo-caption{
		bottom: 30%;
	}
}

@media only screen and (min-width: 1700px) and (max-width: 2046px) {
	.nivo-caption{
		bottom: 26%;
	}
}

@media only screen and (max-width: 1400px) {
	
	.nivo-caption { 
		font-size: 110%;
		padding: 15px 20px 20px 25px;
	}
	
	.nivo-caption h1 {
		margin: 0 0 15px 0;
	}
}

@media only screen and (max-width: 1200px) {
	
	.nivo-caption { 
		font-size: 100%;
		
	}
	
	.nivo-caption h1 {
		margin: 0 0 10px 0;
	}
}

@media only screen and (max-width: 900px) {
	
	.nivo-caption { 
		padding: 10px 20px 15px 35px;
		font-size: 100%;
		width: 100%;
		bottom: 0px;
		height: 120px;
		min-height: 115px;
	}
	
	.nivo-caption h1 {
		margin: 0 0 10px 0;
	}
	
	.nivo-directionNav a {
		top: 15%;
	}
}

@media only screen and (max-width: 800px) {
	
	.nivo-caption { 
		font-size: 95%;
		height: 120px;
		min-height: 120px;
	}
	
	.nivo-caption h1 {
		font-size: 130%;
		margin: 0 0 5px 0;
	}
	
	
}


@media only screen and (max-width: 450px) {
	
	.nivo-caption {
		display:none;
		padding: 3px 10px 5px 10px;
		font-size: 90%;
		width: 100%;
		bottom: 0px;
		height: 100px;
		min-height: 100px;
		opacity: 0;
		-moz-opacity: 0;
		filter:alpha(opacity=0);
	}
	
	.nivo-caption h1 {
		font-size: 120%;
		margin: 0 0 5px 0;
	}
}






