/*
	Slideshow
*/

#slides {
	position:absolute;
	left:0px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:535px;
	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:535px;
	height:264px;
	display:block;
}


/*
	Next/prev buttons
*/
.caption p{
	color:#ffffff; 
	margin:0px;
}
#slides .next,#slides .prev {
	position:absolute;
	top:5px;
	left:465px;
	display:block;
	z-index:150;
	width:21px;
	height:27px;
}
#slides .next {
	left:485px;
}

/*
	Pagination
*/

.pagination {
	margin:12px auto 0;
	width:100px;
	background:#7f7f7f;
	display:none;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	height:22px;
	padding:6px 20px 0 20px;
	background-image:url(../../../images/layout/bg_caption.png);
	background-repeat:repeat-x;
	width:930px;
	font-size:15px;
	line-height:1.33;
	color:#fff;
	text-transform:uppercase;
	text-shadow:none;
	
}