/*
 * 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: 590px;
	margin: 0 0 40px 0;
	border: 4px solid #161616;
}
#slider{
	z-index: 5;
	width: 590px;
	height: 280px;
	margin: 0 auto;
	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:5; height:100%; }
.nivo-box { display:block; position:absolute; z-index:5; }


/* ----------------------  Caption Styles -------------------------- */

.nivo-caption {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
	width: 100%;
	z-index: 89;
}
.nivo-caption p{
	color: #FFF;
	padding: 10px;
	margin: 0;
}

/* ----------------------  Control nav styles (e.g. 1,2,3...) -------------------------- */

.nivo-controlNav a{
	position: relative;
	z-index: 99;
	cursor: pointer;
}
.nivo-controlNav a.active{
	font-weight: bold;
}
.nivo-controlNav{
	position: absolute;
	left: 47%;
	bottom: -20px;
}
.nivo-controlNav a{
	display: block;
	width: 15px;
	height: 10px;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	float: left;
}

/* ---------------------- Direction nav styles (e.g. Next & Prev) -------------------------- */

.nivo-directionNav a{
	position: absolute;
	top: 45%;
	z-index: 99;
	display: block;
	width: 35px;
	height: 33px;
	text-indent: -9999px;
	border: 0;
	cursor: pointer;
}
a.nivo-nextNav{
	background: url('images/slider-arrow-right.png') no-repeat;
	right: 15px;
}
a.nivo-nextNav:hover{
	background: url('images/slider-arrow-right-hover.png') no-repeat;
}
a.nivo-prevNav{
	background: url('images/slider-arrow-left.png') no-repeat;
	left: 15px;

}
a.nivo-prevNav:hover{
	background: url('images/slider-arrow-left-hover.png') no-repeat;
}
.nivo-controlNav a{
	display: block;
	width: 15px;
	height: 10px;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	float: left;
}
