/*
 * 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 {
	float: left;
	position:relative;
	width:100%;
	height:auto;
	max-height: 500px;
	overflow: hidden;
}

.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}

.nivoSlider .nivo-caption img {
	position: relative !important;
	display: block !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;
	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;
	font-family: Verdana, Arial, Sans-Serif;
	right: 20%;
	bottom: 50px;
	text-align: right;
	color:#898989;
	width:75%;
	max-width: 950px;
	min-height: 250px;
	z-index:8;
	padding: 5px 10px;
	opacity: 1;
	overflow: hidden;
	display: none;
	-moz-opacity: 1;
	filter:alpha(opacity=1);
	-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;
	font-size: 18px;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}

.nivo-caption h1, .nivo-caption h2 {
}

.nivo-caption h1 {
	float: right;
	display: inline-block;
	color: #fff;	
	margin: 0 0 15px 0;
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px 25px;
	background-color: #78256f;
}

.nivo-caption h2 {
	float: right;
	color: #fff;	
	font-size: 20px;
	letter-spacing: 2px;
	padding: 15px;
	background-color: #78256f;
}

.nivo-caption .inputBtnGreen, .nivo-caption .inputBtnWhite {
	position: absolute;
	top: 0;
	right: 0;	
}

a.slideInputBtn {
	float: right;
	max-width: 100%;
	margin-top: 20px;
	color: #fff !important;
	font-size: 18px;
	background-color: #0067ab;
	border: 1px solid #0067ab;
	padding: 12px 20px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	text-shadow: none !important;	
	clear: both;
}


/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
	color: #fff;
	line-height: 50px;
	vertical-align: middle;
	background-color: #007fb2;
	
}
.nivo-prevNav {
	left:10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #ddd;
	text-align: center;
	background: transparent;
}
.nivo-nextNav {
	right:10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #ddd;
	text-align: center;
	background: transparent;
}


/* 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;
}