/*
 * 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
 */

/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	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 {
	z-index: 50;
	position: absolute;
	bottom: 0;
	right: 0px;
	display: block;
	background: transparent url('../images/slide-overlay.png') left bottom repeat-x;
	opacity: 1px;
	width: 872px;
	height: 50px;
}
.nivo-caption p {
	z-index: 55;
	position: absolute;
	bottom: 0;
	right: 0;
	float: right;
	color: #eee;
	font: 18px Georgia;
	line-height: 20px;
	padding:7px 11px;
	margin:0;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:99;
	cursor:pointer;
}
.nivo-prevNav,
.nivo-nextNav {
	background-image: url('../images/slide-icons.png');
	background-color: transparent;
	background-repeat: no-repeat;
	width: 33px;
	height: 33px;
	text-indent: -9999px;
}
.nivo-prevNav {
	left:0px;
	background-position: top left;
	margin-left: 10px;
}
.nivo-nextNav {
	right:0px;
	background-position: top right;
	margin-right: 10px;
}
.nivo-prevNav:hover { background-position: bottom left; }
.nivo-nextNav:hover { background-position: bottom right; }

.nivo-controlNav {
	z-index: 111;
	position:absolute;
	bottom: 1px;
	left: 2px;
	height: 12px;
	padding: 8px 2px 8px 10px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	cursor: pointer;
	float: left;
	display: block;
	background: transparent url('../images/slider-icons.png') left bottom no-repeat;
	width: 12px;
	height: 12px;
	text-indent: -9999px;
	margin-right: 7px;
}
.nivo-controlNav a.active {
	float: left;
	display: block;
	background-position: right bottom;
	width: 12px;
	height: 12px;
}
