/*
 * 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;
margin:0 auto;
text-align:center;
width:951px;
}

#slides {
	position:relative;
	background:url(../images/ajaxloader.gif) no-repeat 50% 50%; 
}
#slides img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}

.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: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:0px;
	color:#fff;
	opacity:1; /* Overridden by captionOpacity setting */
	width:100%;
	z-index:89;
	text-align:left;
	height:50px;
	background:url(../images/bg_slider_bar.png) repeat-x;
	
}
.nivo-caption p {
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
	color:#fff;
	padding-left:20px;
	padding-top:20px;
	margin:0;
}
/* Direction nav styles (e.g. Next & Prev) */

.nivo-directionNav a {

	position:absolute;
	background:none;

	top:45%;

	z-index:99;

	cursor:pointer;

}

.nivo-prevNav {

	left:0px;

}

.nivo-nextNav {

	right:0px;

}

span.prevSpan{
float:left;
background:url(../images/btn_arrows.png) no-repeat;
backgound-position:0px 15px;
width:15px;
height:16px;
margin-right:5px;
z-index:10000;
}

span.nextSpan{
float:left;
background:url(../images/btn_arrows.png) no-repeat;
width:15px;
height:16px;
margin-right:5px;
z-index:99;
}
/* Control nav styles (e.g. 1,2,3...) */
a.nivo-control{
	position:relative;
	z-index:99;
	cursor:pointer;
	background:url(../images/icon_slider_inactive.png) no-repeat; 
	margin-right:5px;
	width:13px;
	display:block;
	float:left;
}
a.active{
	background:url(../images/icon_slider_active.png) no-repeat;
	width:13px;
}