/*
 * 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 {
	position:relative;
	height:100%;
	width:auto;
	overflow: hidden;
	}
	
/*INVERT the image managing by setting the HEIGHT*/
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	height:100% !important;
	width:auto !important;
	}

.nivo-main-image {
	display: block !important;
	position: relative !important; 
	height: 100% !important;
	width:auto !important;
	}

.slider-wrapper{ /* GOOD to setting the responsive image */
	height:100%;
	}
	   
/* 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;
	display: none;
	width:46%;
	height:auto;
	top:25%;
	left:27%;
	right:27%;
	margin:0;
	z-index:8;
	padding:5px 10px 5px 10px;
	overflow: hidden;
	color:#fff;
	outline:solid 1px white;
	outline-offset:3px;
	background:rgba(230, 240, 255, 0.7);
	background-image:url(../images_main/point_pattern_WHT.png);
	background-size:5px;
	-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 h2{
	font-family:"gasaltregular";
	font-style:normal;
	font-weight:normal;
	font-size:50px;
	line-height:45px;
	letter-spacing:1px;
	color:#27303D;
	}	
	
.nivo-caption p {
	padding:3px;
	margin:0;
	font-family:"gasaltregular";
	font-style:normal;
	font-weight:normal;
	font-size:25px;
	letter-spacing:1px;
	color:#27303D;
	background:rgba(230, 240, 255, 0.5);
	}
.nivo-caption a {
	display:inline !important;
	}
.nivo-html-caption {
    display:none;
	}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	width:34px;
	height:34px;
	left:15px;
	background-image:url(../images_main/LX_arrow_W.png);
	background-position:center;
	background-size:70%;
	background-repeat:no-repeat;
	border:solid 2px white;
	border-radius:23px;
	background-color:transparent;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
.nivo-nextNav {
	width:34px;
	height:34px;
	right:15px;
	background-image:url(../images_main/RX_arrow_W.png);
	background-position:center;
	background-size:70%;
	background-repeat:no-repeat;
	border:solid 2px white;
	border-radius:23px;
	background-color:transparent;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}

.nivo-prevNav:hover, .nivo-nextNav:hover{
	background-color:rgba(95, 190, 200, 0.5);
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
	}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 15px 0;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}


@media screen and (max-width:480px) {
	
		.nivo-caption {
			width:70%;
			right:15%;
			left:15%;
			}
		
		.nivo-caption h2{
			font-size:35px;
			line-height:30px;
			}		
		
		.nivo-caption p{
			font-size:21px;
			line-height:18px;
			}

	}







