/*
 * jQuery Nivo Slider v2.5.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:970px;
	margin:0 auto;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}
/* 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;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
/* Caption styles */
.nivo-caption {
	float: left; position:absolute; bottom:0; background:url(../images/feat-overlay.png) repeat; padding:31px 10px 10px 10px; width:496px; z-index:8;
}
.nivo-caption h1 { font-family:'BebasNeueRegular'; font-size:28px; color:#FFF; margin-bottom:2px; text-shadow: 1px 1px 1px #000; }
.nivo-caption  p { color:#999; text-shadow: 1px 1px 1px #000; }

.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 {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}

#slider {
    position:relative;
    width:970px; /* Change this to your images width */
    height:395px; /* Change this to your images height */
	background:#000;
}
#slider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
}
#slider a {
    border:0;
    display:block;
}

#slider {
		background: url('images/loader.gif') no-repeat 50% 50%;
	}
	
	#slider .nivo-controlNav {
		position: absolute;
		width:100%;
		height: 45px;
		top:320px;
	}
	
	#slider .nivo-controlNav img {
		display: inline-block; /* Unhide the thumbnails */
		position: relative;
		border: 2px solid #fff;
		margin-right:10px;
		float:left;
		width: 45px;
		height: 40px;
		filter: url(filters.svg#grayscale); /* Firefox 3.5+ */
        filter: gray; /* IE6-9 */
        -webkit-filter: grayscale(1); /* Google Chrome & Safari 6+ */
	}
	
	#slider .nivo-controlNav img:hover {
		filter: none;
    	-webkit-filter: grayscale(0);
		border: 2px solid #73bdc1;
	}
	
	
	#slider .nivo-controlNav .nivo-control { position: relative; }
	
	#slider .nivo-controlNav .active .overlay {
		background: url('images/current-thumb.png') ;
		position: absolute;
		top: 1px;
		left: 1px;
		display: block;
		width: 45px;
		height: 40px;
		display:none !important
	}
	
	.nivo-caption h1 a { color: #fff; }