

/*
	Slideshow
*/

#slides {
	position:absolute;
	top:20px;
	left:20px;
	z-index:100;
}

.slide a, .slide img {
	border: none;
}	

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

.slides_container {
	width:920px;
	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:920px;
	height:350px;
	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:585px;
}

/*
	Pagination
*/

.pagination {
	position: absolute;
	top: 310px;
	left: 800px;
	width: 70px;
	height: 22px;
	background: none;
	z-index: 1000;
}

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

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../img/pagination.png);
	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;
	height:85px;
	background:#000;
	width:920px;
	font-size:18px;
	font-weight: bold;
	color:#fff;
	text-shadow: 1px 1px 4px #000;
	text-align: left;
	opacity: .65;
	filter: alpha(opacity = 65);
}

.caption p {
	margin-top: 18px;
	margin-left: 25px;
	line-height: 24px;
}

.caption p .cp24 {
	font-family: Balthazar, Copperplate, sans-serif;
	font-size: 26px;
	font-weight: bold;
	text-transform: uppercase;
}

