/*
	Slideshow style
*/

#slides {
	position:absolute;
	top:0px;
	left:0px;
	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 {
	width:750px;
	height:230px;
	overflow:hidden;
	position:relative;
	display:none;
}

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

#slides .slide {
	padding:0;
	margin: 0;
	width:750px;
	height:230px;
	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;
}

#slides .slide a {
	color: #000000;
	filter:alpha(opacity=44); 		-moz-opacity: 0.44; 		opacity: 0.44;
		-khtml-opacity: 0.44;

}

#slides .slide a:hover {
	color: #000000;
		filter:alpha(opacity=100); 		-moz-opacity: 1; 		opacity: 1;
		-khtml-opacity: 1;
}


/*
	Pagination
*/

.pagination {
	z-index: 200;
	position: absolute;
	top: 200px;
	left: 264px;
	width:300px;
	height: 30px;
}

.pagination li {
	float:left;
	margin-right: 3px;
	list-style:none;
	height: 30px;
}

.pagination li a {
	display:block;
	width:72px;
	height:30px;
	padding-top:0px;
	background-image:url(../images/slides/pagination6.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	float:left;
	overflow:hidden;
	color: transparent;
	font-size: 0;
}

.pagination li.current a {
	background-position: 0 -30px;
}

.pagination li a:hover {
	background-position: 0 -30px;
}