/*
	* 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 {
	top: 0px; left: 0px;
	position: absolute;
}

/* If an image is wrapped in a link */

.nivoSlider a.nivo-imageLink {
	height: 100%; width: 100%;
	top: 0px; left: 0px;
	margin: 0;
	padding: 0;
	display: none;
	border: 0;
	position: absolute;
	z-index: 2;
}

/* The slices in the Slider */

.nivo-slice {
	height: 100%;
	display: block;
	position: absolute;
	z-index: 1;
}

/* Caption styles */

.nivo-caption {
	width: 100%;
	bottom: 0px; left: 0px;
	background: #000;
	color: #FFF;
	opacity: 0.8; /* Overridden by captionOpacity setting */
	position: absolute;
	z-index: 3;
}

.nivo-caption p {
	margin: 0;
	padding: 5px;
}

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

.nivo-directionNav a {
	height: 20px; width: 20px;
	top: 190px;
	background-image: url("../images/arrows.png");
	background-repeat: no-repeat;
	cursor: pointer;
	display: block;
	position: absolute;
	text-indent: -9999px;
	z-index: 4;
}

.nivo-prevNav {
	left: -20px;
	background-position: 0 0;
}

.nivo-prevNav:hover									{background-position: 0 -20px;}
.nivo-prevNav:active								{background-position: 0 -40px;}

.nivo-nextNav {
	right: -20px;
	background-position: -20px 0;
}

.nivo-nextNav:hover									{background-position: -20px -20px;}
.nivo-nextNav:active								{background-position: -20px -40px;}

/* Control nav styles (e.g. 1,2,3...) */

.nivo-controlNav {
	bottom: -15px; left: 460px;
	position: absolute;
}

.nivo-controlNav a {
	height: 10px; width: 10px;
	margin: 0 0 0 5px;
	background-image: url("../images/balls.png");
	background-position: top center;
	background-repeat: no-repeat;
	cursor: pointer;
	display: block;
	float: left;
	position: relative;
	text-indent: -9999px;
	z-index: 5;
}

.nivo-controlNav a.hover							{background-position: center center;}
.nivo-controlNav a.active							{background-position: bottom center;}