/*
	Slideshow style
*/

#slides {
	position:relative;
        margin-top: 10px;
	width: 739px;
	height: 241px;
	padding: 14px 84px; 
	background-image:url(/img/frame.png);
	background-position:0 0;
	background-repeat:no-repeat;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
	position:relative;
	width:570px;
	height:205px;
	overflow:hidden;
	display:none;
	z-index: 10;
/* background-color: #e0e; */
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides .slide {
	padding:5px 25px;
	width:530px;
	display:block;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
/*	top: 132px; */
	top: 37%;
	left:44px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
/*	left:669px; */
	left:670px;
}

#slides .next a, #slides .prev a {
	outline: none;
}

/*
	Pagination
*/

.pagination {
	position: absolute;
	bottom: 5px;
	left: 312px;
}

.pagination li {
	float:left;
	margin:0 1px;
	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;
}
