/*
 * 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 {
	width:100%;
	height:auto;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	width: 100% !important;
	visibility: hidden;
}
body.inner .nivoSlider { position: relative !important; }
body.inner .nivo-main-image { position: relative !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% !important;
	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: 200px;
	top:200px;
	font-size: 21px;
	line-height: 1;
	color: white;
	padding: 0px 20px;
/*	background:#fff;*/
/*	color:#000;*/
	opacity:1; /* Overridden by captionOpacity setting */
	width:30%;
	z-index:8;
}
/*customize*/
.nivo-caption .banner-title{ font-weight: bold; text-transform: uppercase; font-size: 90px; line-height: 70px; margin-bottom: 20px; }

.nivo-caption .banner-subtitle{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 35px;
	margin-bottom: 25px;
}

.nivo-caption .banner-info{
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 1.3;
}
/*END*/
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline-block !important;
	zoom:1;
	padding: 25px 60px;
	color:#fff !important;
	font-weight:bold;
	border-radius:30px;
	text-decoration:none;
	background-color:#28a0a1;
	font-size: 15px;
}

.nivo-caption a:hover{
	background-color: #000000;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav { width: 100%; }
.nivo-directionNav a {
	display:block;
	width:50px;
	height:20px;
	color: #FFFFFF;
	border:0;
	z-index: 100;
	position: absolute;
	top: 100px;
	font-weight: bold;
	text-transform: bold; 
}
.nivo-prevNav {
	background:url(icon-arrow-left-white.png) no-repeat;
	background-position:left;
	left:50%;
	margin-left: -496px;
	text-align: left;
	top: 298px;
	float: left;
	cursor: pointer;
	padding-left: 45px;
	text-transform: uppercase;
}

.nivo-prevNav:hover{
	background-image: url(icon-arrow-left-green.png);
	color: #28a0a1;
}

.nivo-nextNav {
	background:url(icon-arrow-right-white.png) no-repeat;
	background-position:right;
	right:50%;
	margin-right: -496px;
	top: 298px;
	float: right;
	text-align: right;
	cursor: pointer;
	padding-right: 45px;
	text-transform: uppercase;
}

.nivo-nextNav:hover{
	color: #28a0a1;
	background-image: url(icon-arrow-right-green.png);
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	padding: 15px 0;
	position: absolute; 	
	bottom: 45px;
	z-index: 2999;
}
.nivo-controlNav a {
	cursor:pointer;
	display:inline-block;
	width:50px;
	height:7px;
	background:url(bullet.webp) no-repeat center;
	text-indent:-9999px;
	border:0;
	margin: 0 5px;
}
.nivo-controlNav a.active {
	background:url(bullet-active.webp) no-repeat;
}