/*
 * 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


/* ----------------------  Slider Layout -------------------------- */
 
#slider-wrap{
	width: 900px;
	background: #FFF url('slider-shadow.png') bottom center no-repeat;
	padding: 10px 0 34px 0;
	margin: 0 auto;
}
#slider{
	z-index: 5;
	width: 900px;
	height: 350;
	position: relative;
}
#slider img{
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
#slider a {
	border: 0;
}

.nivoSlider{
	position:relative;
}
.nivoSlider img{
	position: absolute;
	top: 0px;
	left: 0px;
}


/* ----------------------  Image With 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;
}


/* ----------------------  Slider Slices -------------------------- */

.nivo-slice {
	display: block;
	position: absolute;
	z-index: 50;
	height: 100%;
}


/* ----------------------  Caption Styles -------------------------- */


/* ---------------------- Direction nav styles (e.g. Next & Prev) -------------------------- */

.nivo-directionNav a{
	position: absolute;
	top: 45%;
	z-index: 99;
	display: block;
	width: 35px;
	height: 35px;
	text-indent: -9999px;
	border: 0;
	cursor: pointer;
}
.nivo-prevNav{
	background: url('slider-arrows.png') no-repeat;
	left: 15px;

}
.nivo-prevNav:hover{
	background-position: 0 -43px;
}
.nivo-nextNav{
	background: url('slider-arrows.png') no-repeat -44px 0;
	right: 15px;
}
.nivo-nextNav:hover{
	background-position: -44px -43px;
}
.nivo-controlNav a{
	display: block;
	width: 15px;
	height: 10px;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	float: left;
}
