/*
 * 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 */
.czhomeslider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.nivoSlider {
	position: relative;
	width: 100%;
	height: 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;
	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 {
	position: absolute;
	left: 0px;
	bottom: 0px;
	background: #f0e7dd;
	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 {
	text-decoration: none;
	display: block;
	margin: 30px 0 0;
	position: absolute;
	z-index: 8;
	top: 50%;
	overflow: hidden;
	margin: 2px;
	border: 2px solid #262626;
	opacity: 0;
	filter: alpha(opacity=0);
	cursor: pointer;
	font-size: 0;
	height: 80px;
	width: 80px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.nivo-directionNav a:before {
	height: 42px;
	width: 42px;
	color: #ffffff;
	display: inline-block;
	float: none;
	font-family: "FontAwesome";
	font-size: 30px;
	line-height: 28px;
	margin: 2px;
	vertical-align: top;
	padding: 7px 15px;
	background-color: #262626;
}

.nivo-directionNav a:hover {
	border-color: #adc7b1;
}

.nivo-directionNav a:hover:before {
	background-color: #adc7b1;
	color: #000;
}

.nivo-prevNav:before {
	content: '\f0d9';
}

.nivo-nextNav:before {
	content: '\f0da';
}

/*.nivo-directionNav a:before {
    height: 44px;
    width: 44px;
    color: #ffffff;
    display: inline-block;
    float: none;
    font-family: "FontAwesome";
    font-size: 25px;
    line-height: 28px;
    margin: 0 4px;
    vertical-align: top;
    padding: 9px 17px;
    background-color: #648813;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.nivo-directionNav a.nivo-nextNav:before { padding-left: 19px; }
.nivo-directionNav a:hover:before { background-color: #ebbd07; color: #000000; }*/
.nivo-prevNav {
	left: 5px;
}

.nivo-nextNav {
	right: 5px;
}

/*.nivo-prevNav:before{
    content: "\f104";
}
.nivo-nextNav:before{
    content: "\f105";
}*/
.czhomeslider .nivo-directionNav .nivo-prevNav {
	opacity: 0;
	filter: alpha(opacity=0);
	left: 50px;
}

.czhomeslider .nivo-directionNav .nivo-nextNav {
	opacity: 0;
	filter: alpha(opacity=0);
	right: 50px;
}

.czhomeslider:hover .nivo-directionNav .nivo-prevNav {
	opacity: 1;
	filter: alpha(opacity=100);
	left: 100px;
}

.czhomeslider:hover .nivo-directionNav .nivo-nextNav {
	opacity: 1;
	filter: alpha(opacity=100);
	right: 100px;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	width: 100%;
	position: absolute;
	margin: 0;
	opacity: 0;
	bottom: 15px;
	text-align: center;
	z-index: 7;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.nivo-controlNav li {
	margin: 0 4px;
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.nivo-controlNav a {
	width: 12px;
	height: 12px;
	display: block;
	background-color: #262626;
	cursor: pointer;
	text-indent: -9999px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.nivo-controlNav a:hover,
.nivo-controlNav a.active {
	background-color: #adc7b1;
}

.nivo-controlNav a.active {
	cursor: default;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media (max-width: 1230px) {
	.czhomeslider .nivo-directionNav .nivo-prevNav {
		left: 30px;
	}

	.czhomeslider .nivo-directionNav .nivo-nextNav {
		right: 70px;
	}

	.czhomeslider:hover .nivo-directionNav .nivo-prevNav {
		left: 30px;
	}

	.czhomeslider:hover .nivo-directionNav .nivo-nextNav {
		right: 70px;
	}
}

@media screen and (max-width: 860px) {

	.nivo-controlNav {
		bottom: 0px;
	}
}

@media screen and (max-width: 991px) {
	.nivo-directionNav {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.nivo-controlNav {
		opacity: 1;
	}


}

@media (min-width: 480px) {
	.czhomeslider:hover .nivo-controlNav {
		opacity: 1;
		-webkit-transition: all 500ms ease;
		-moz-transition: all 500ms ease;
		-o-transition: all 500ms ease;
		transition: all 500ms ease;
	}
}