/*
 * jQuery Nivo Slider v2.0
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/***************************************************
			    START NIVO SLIDER
***************************************************/
#slider {
	width:960px !important;
	height:400px !important;
	margin:35px 0 30px 0px;
	}

.nivoSlider {
	position:relative;
	z-index:60;
	}
	
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display: none;
	}
	
#slider img {
	display: none;
}
	
/* 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:60;
	display:none;
	}
	
/* The slices in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:50;
	height:100%;
	}
	
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:310px;
	color:#fff;
	width:100%;
	z-index:89;
	opacity: 1 !important;
	filter: alpha(opacity = 100) !important;
	}
	
.nivo-caption p {
	margin:0;
	color:#fff;
	height:32px;
	font-family:VegurLight, Helvetica, sans-serif;
	font-size:24px;
	text-align: left;
	padding: 10px 20px 5px 30px;
	}
	
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:99;
	cursor:pointer;
	}
	
.nivo-prevNav {
	left:0px;
	}
	
.nivo-nextNav {
	right:0px;
	}
	
.nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(../img/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
}
a.nivo-nextNav {
	background-position:-30px 0;
	right:-50px;
}
a.nivo-prevNav {
	left:-50px;
}	


/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a img {
	position:absolute;
	z-index:998;
	cursor:pointer;
	padding: 2px 2px 2px 2px;
	opacity: .55;
	border: 1px solid transparent;
	}
	
.nivo-controlNav a.active img{
	position:relative;
	padding: 2px 2px 2px 2px;
	opacity: 1.0;
	border: 1px solid #666;
	border: 1px solid #d8d8d8;
	}

.nivo-controlNav a:hover img{
	position:relative;
	padding: 2px 2px 2px 2px;
	opacity: 1.0;
	border: 1px solid #d8d8d8;
	}

#slider .nivo-controlNav {
	z-index: 993;
	position:absolute;
	bottom:-108px; /* Put the nav below the slider */
	background-image:url(../img/slider_bottom_bar.png);
	background-repeat:repeat-y;
	width: 960px;
	text-align:center;
	padding: 10px 0 10px 0;
	}
	
#slider .nivo-controlNav img {
	display:inline; /* Unhide the thumbnails */
	position:relative;
	margin-right:10px;
	z-index:998;
	}
	
/***************************************************
		    	END NIVO SLIDER
***************************************************/