/*
 * jQuery Cycle Plugin
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 *
 * Custom CSS by Raspo
*/

#cycleSlider{
    position: relative;
}

#slides{
    width: 900px;
    height: 300px;
    overflow: hidden;
}

.cs-Prev {
	position:absolute;
	top:45%;
	z-index:99;
	cursor:pointer;
	text-indent: -9999px;
	width: 41px;
	height: 35px;
	background: url(../img/slider-arrow-left.png) no-repeat; 
	left: -32px;
} 
.cs-Next {
	position:absolute;
	top:45%;
	z-index:99;
	cursor:pointer;
	text-indent: -9999px;
	width: 41px;
	height: 35px;
	background: url(../img/slider-arrow-right.png) no-repeat; 
	right: -31px;
}

.noJs .cs-Prev, .noJs .cs-Next, .noJs #caption{
	display: none;
}

#caption{
    display: none;
    position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	opacity:0.8;
	width:100%;
	z-index:89;
}
#caption p{
   padding:5px;
   margin: 0;
}