@charset "utf-8";

#slides {
	/*
	position:absolute;
	top:15px;
	left:4px;
	z-index:100;
	*/
	font-size:0;
}

/*
	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:900px;
	/*
	height:318px;
	*/
	height:280px;
	_margin: 10px 0;
	overflow:hidden;
	position:relative;
	display:none;
}


*+html .slides_container {
	width:900px;
	height:300px;
	margin: 10px 0;
	overflow:hidden;
	position:relative;
	display:none;
}


.slides_container,  x:-moz-any-link, x:default  {
		position:relative;
		left: -900px;
}

*+html .slides_container{
	position:relative;
	left: 0;
}


/*
	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:20px;
	*/
	padding:10px 0 0 0;
	width:900px;
	/*
	height:307px;
	*/
	height: 280px;
	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 {
	clear: both;
	/*
	margin:26px auto 0;
	*/
	position:relative;
	/*
	top:-260px;
	right: -850px;
	*/
	top:-266px;
	right: -827px;

	width:120px;
	z-index: 9999;
}

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