/*
 * 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;
	width: 990px;
	height: 489px;
	overflow: hidden; 
}

.nivoSlider img {
	position:absolute;
	top: 0;
	left: 0;
	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:2;
	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:2;
	height:100%;
	top:0; 
}

.nivo-box {
	display:block;
	position:absolute;
	z-index:2;
	overflow:hidden; 
}

.nivo-box img { display:block; }

/* Caption styles */

.nivo-caption {
	background: none;
	position:absolute;
	left:50px;
	bottom: 200px;
	z-index: 3;
	overflow: hidden;
	display: none;
}
.nivo-caption p {
	padding:0;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}

.caption-title {		
	width: 615px;	
	float: left;	
}

.caption-secondline {
	font-weight: normal;
 	font-family: 'open_sans_condensedbold', Arial, Helvetica, sans-serif; 
	line-height: 22px;
	font-size: 26px; 
	color: #00537e;
	float: left;
	text-align: left;
}

.proud {
	color: #00537e;
	float: left;
	font-size: 30px;
	font-family: 'alex_brush', Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin-right: 5px;
	top: 0px;
}

.caption-text{
	font-family: 'open_sans_condensedbold';
	font-size:36px; 
	color:#000000;
	float:left;
	padding:0 0 17px 0px;	
}

/* Direction nav styles (e.g. Next & Prev) */

.nivo-directionNav a {
	position:absolute;
	top: 45%;
	z-index:5;
	cursor:pointer;
	display: block;
	width: 25px;
	height: 62px;
	background: url(../images/arrows.png) no-repeat;
	text-indent: -9999px;
	border: 0;
	opacity: 1;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
}
.nivo-directionNav a:hover {
	opacity: 0.8;
}

a.nivo-prevNav {
	left: 0px;
}
a.nivo-nextNav {
	background-position: -25px 0;
	right: 0px;
}