/*
	Slideshow
*/

#slides {
	position:relative;
        float: left;
        min-height: 1px;
        height: auto;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	background: transparent;
	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 {
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:70px;
	left:10px;
	display:block;
	z-index:101;
}

#slides .next {
	left:930px;
}

/*
	Pagination
*/

.pagination {
	margin:7px auto 0;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:10px;
	height:0;
	padding-top:10px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -10px;
}

/*
	Caption
*/

.caption p
{
        font-family: futura_ltcn_btlight;
        color: #FFFFFF;
        font-size: 1.4em;
	float: left;
	clear: both;
}

.caption span
{
	float: left;
	clear: both;
}

.caption a
{
	float: left;
}