/*
	Slideshow
*/

.slides {
	position:relative;
	z-index:100;
  top:0px;
  left:0px;
  width:570px;
  font:normal 62.5%/1.5 Helvetica, Arial, sans-serif;
  margin:0px auto;
}

.slides a, .slides img { padding:0; border:0; margin:0; outline:0; }

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

.slides .slides_container {
	display:none;
	overflow:hidden;
}

/*
	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 .slides_container .slide {
	display:block;
  width:570px;
	height:270px;
}

/*
	Next/prev buttons
*/

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

.slides .next {
	left:auto;
	right:-26px;
}

/*
	Pagination
*/

.slides .pagination {
	margin:10px auto 0;
	width:100px;
}

.slides .pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

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

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

/*
	Caption
*/

.slides .caption, .slides .caption p { font-size:13px; color:#FFF; }


.slides .caption p {    line-height: 15px;    width: 214px;    padding: 4px 0px;    border: 0px solid red;    margin: 0px 120px 0px 10px;}
.slides .caption {    position: absolute;    z-index: 102;    left: 0px;    right: 0px;    bottom: -35px;    background: #000;    filter: alpha(opacity=50);    background: rgba(0,0,0,.5);    text-shadow: none;    border-top: 1px solid #000;    line-height: 27px;}
