#slides {
	position:absolute;
	top:0px;
	left:0;
    width:100%;
	min-width:1160px;
	z-index:100;
	height:383px;
	overflow:hidden;
}
#slides_2 {
	position:absolute;
	left:0;
    width:1160px;
	min-width:1160px;
	z-index:500;
	overflow:hidden;
	height:383px;
}
#slides_new {
	position:absolute;
	top:0;
	left:0;
    width:100%;
	height:31px;
	min-width:1160px;
	z-index:100;
	overflow:hidden;
}
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

#slides .slides_container {
	width:100%;
	min-width: 100%;
	height:383px;
	overflow:hidden;
	position:absolute;
	top:0;	
}
#slides_2 .slides_container {
	width:1160px;
	height:383px;
	overflow:hidden;
	position:absolute;
	left:0;
	top:0;	
}
#slides_new  .slides_container,
#slides_new2  .slides_container {
	width:1160px;
	width:1160px;
	height:31px;
	overflow:hidden;	
}
/*
	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 {
	width:570px;
	height:270px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides_2 .next,#slides_2 .prev {
	position:absolute;
	top:115px;
	left:300px;
	width:24px;
	height:43px;
	display:block;
	z-index:600;
	opacity:0.4;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#slides_2 .next {
	left:955px;
}
#slides_2 .next:hover ,#slides_2 .prev:hover{
	opacity:1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
/*
	Pagination
*/
/*
.pagination {
	margin:26px auto 0;
	width:100px;
	display:none;
}

.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;
}*/