
/*
	Slideshow
*/

#slides {
	position:absolute;
}

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

.slides_container {
	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 {
	height:214px;
	display:block;
}


/*
	Next/prev buttons
*/

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

#slides .next {
	left:585px;
}

/*
	Pagination
*/

.pagination {
    margin: -29px 0 0 604px;
    position: absolute;
    width: auto;
    z-index: 10000;
}

.pagination li {
	float:left;
	margin-right: 4px;
	width:16px;
	height:16px;
	list-style:none;
	
}

.pagination li a {
	text-align: center;
    background-position: center center;
	display:block;
	width:12px;
	height:12px;
	-webkit-border-radius: 8px;
	border-radius: 8px; 
	color: #fff;
	background-color: white;
	text-indent: -9999px;
}
	
.pagination li.current a {
    background-position: center center;
	text-align: center;
	display:block;
	width: 12px;
    height: 12px;
	color:#A1D858;
	background-color: #A1D858;
	
}

/*
	Next/prev buttons
*/

.next, .prev {
	position:absolute;
	top:107px;
	left:-39px;
	width:57px;
	height:57px;
	display:block;
	z-index:101;
}

.next {
	left:585px;
}

/*
	Caption
*/

.caption {
	background-image: url("/images/trans.png");
	background-repeat: repeat;
	bottom: 0 !important;
	color: #FFFFFF;
	height: 51px;
	left: 0;
	line-height: 1.33;
	position: absolute;
	text-align: left;
	text-shadow: none;
	width: 742px!important;
	z-index: 500;
	padding-left: 19px;
}

.caption a {
	color: #fff;
	z-index: 10000;
	position: absolute;
	display: block;
}

.slides_container div.slide,
.slides_container,
.caption {
	width:498px;
}

