/*
	slideshow
*/
#slides { position:relative; }
#slides p { color:white; }

/*
	slides container
	important:
	set the width of your slides container
	set to display none, prevents content flash
*/

.slides_container {
	width:270px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	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:270px;
	height:210px;
	display:block;
}


/*
	next/prev buttons
*/


/*
	pagination
*/

.pagination {
	position:absolute; right:0; bottom:30px;
	z-index:9999;
}

.pagination li {
	float:left;
	margin-right:5px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(/uploads/image/jsimg/pagination.png);
	_background-image:url(/uploads/image/jsimg/pagination.gif);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	padding:5px 5px 5px 5px;
	background-color:#a61b1f;
	width:260px;
	font-size:1.3em;
	line-height:1.33;
	color:#fff;
	text-shadow:none;
}

.caption p {
	width:260px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;}