  /*
 * 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 */

.slider-wrapper {
width:100%;
margin:0 auto 0 auto;
	padding:0;
}

.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
	margin-bottom: -2px;/* temporarily added to hide bottom edge of images */
}
.nivo-main-image {
	display: block !important;
	max-width:1920px;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
/* set H x W to 100% if image is to be clickable, if not set to 0 */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:0;
	height:0;
	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 {
	/*background-image:url(/_resources/images/gray-trans.png);*/
  	background-color: rgba(0, 0, 0, 0.7);
	position:absolute;
	left:0;
	bottom:0;
	color:#fff;
	width:100%;
	z-index:8;             
	opacity: 1;
	overflow: hidden;
	display: none;
	padding: 0;
  	width:100%;
	-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 {
	margin:0; /*changed to 0 */
	font-size:.84em;
	color:#fff;
	padding:0 10px ;
	/*box-sizing:border-box;*/
	line-height:2em;
	
}
.container .nivo-caption h1 {
	/*margin:-1em 0 0 0; adjusted to show caption*/
	font-size:1.8em;
	font-weight:normal;
	color:#fff; /*added to show white*/
	margin: .4em 0;
}
.nivo-caption a {
	display:inline !important;
	color:#fff;
	text-decoration: none;
}

.nivo-caption a:visited {color:#fff;}


.nivo-html-caption {
    display:none;
}




/* end new caption */


/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
	background-image: url(/_resources/images/left.png);
	color: #FFF;
	background-repeat: no-repeat;
	height: 60px;
	width: 100px;
	text-align: left;
	background-position: left bottom;
	display:none;
}
.nivo-nextNav {
	right:0px;
	color: #FFF;
	background-image: url(/_resources/images/right.png);
	background-repeat: no-repeat;
	height: 60px;
	width: 100px;
	text-align: right;
	background-position: right bottom;
	display:none;
}

/* added to show nex and prev nav images on hover */


.nivoSlider:hover .nivo-nextNav {
    display: inline;
}
.nivoSlider:hover .nivo-prevNav {
    display: inline;
}






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


@media screen and (max-width: 768px) {
	.nivo-caption {bottom:0;}
	.nivo-caption p {font-size:.76em;}
	
	
}