/*
 * 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 {
	height:auto;
	overflow: hidden;
	position:relative;
	width:100%;
}
.nivoSlider img, .nivo-slice {
	height: auto !important;
	left: 0;
	max-width: none;
	min-height: 100%;
	min-width: 1920px;
	position: absolute;
	top: 0;
	width: 100% !important;
}
.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;
	height:100%;
	position:absolute;
	top:0;
	z-index:5;
}
.nivo-box {
	display:block;
	overflow:hidden;
	position:absolute;
	z-index:5;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-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 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: #f00; */
	color: #fff;
	cursor:pointer;
	font-family: "FontAwesome";
	font-size: 0;
	height: 100%;
	position:absolute;
	text-decoration: none;
	top:0;
	width: 60px;
	z-index:25;
}
.nivo-directionNav a:hover {
	color: #c2b32f;
}
.nivo-prevNav {
	left:0px;
	padding-left: 20px;
}
.nivo-prevNav:after {
	content: "\f0a8";
}
.nivo-nextNav {
	padding-right: 20px;
	right:0px;
}
.nivo-nextNav:after {
	content: "\f0a9";
}
.nivo-prevNav:after, .nivo-nextNav:after {
	display: block;
	font-size: 2.500rem;
	height: 2000px;
	line-height: 2000px;
	position: absolute;
   	top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	bottom: 0;
	padding: 0 0 30px;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 20;
}
.nivo-controlNav a {
	border: 3px solid #fff;
	border-radius: 50%;
	cursor:pointer;
	display: inline-block;
	font-size: 0;
	height: 24px;
	margin: 0 5px;
	width: 24px;
}
.nivo-controlNav a:hover {
	background-color: rgba(194, 179, 47, 1)
}
.nivo-controlNav a.active {
	background-color: #fff;
}

/* Max 1920 */
@media screen and (max-width: 1920px) {
	.nivoSlider img.nivo-main-image, .nivo-slice {
		left: 50% !important;
		position: absolute !important;
		-webkit-transform: translateX(-50%) !important;
	    -moz-transform: translateX(-50%) !important;
	    -ms-transform: translateX(-50%) !important;
	    transform: translateX(-50%) !important;
	}
}

/* Max 400 */
@media screen and (max-width: 400px) {
	.nivo-controlNav {
		padding: 0 0 15px;
	}

	.nivo-directionNav a {
		width: 42px;
	}

	.nivo-prevNav {
		padding-left: 8px;
	}

	.nivo-nextNav {
		padding-right: 8px;
	}
}