/*
	Slideshow
*/

#slides {
	position:relative;

	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:625px;
	overflow:hidden;
	position:relative;
	display:none;
	position: relative;
	height: 228px;
	margin-bottom: 20px;

}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	width:625px;
	height:228px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:107px;
	left:-39px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left:625px;
}

/*
	Pagination
*/

.pagination {
position: relative;
	width:80px;
float: right;
margin-top: -37px;
z-index: 200;
margin-right: 5px;
margin-right: -45px;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
padding: 0px;
margin-left: 5px !important;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:11px;
	background-image: url(imgs/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -11px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:0px;
	left:0;
	height:30px;
	padding:5px 20px 0 20px;
/*	background:#000;
    filter: alpha(opacity=85);*/
/*    opacity: 0.85;  	
	background:rgba(0,0,0,.85);*/
	width:600px;
	font-size: 16px;
	line-height:25px;
	color:#fff;
/*	border-top:1px solid #000;*/
	text-shadow:none;
	color: #ababab;
	letter-spacing: 1px;
	overflow: hidden;
}	

.caption a {
	color: #ababab;
	}
