/*---------------------------Slider--------------------------------*/
#container {
	width:900px;
	height:250px;
	padding:0px 0 0px 0;
	margin:0 auto;
	position:relative;
	z-index:0;
	background:url(../images/slider-bg2.png) no-repeat top left;
}

#frame {
	position:absolute;
	z-index:0;
	width:900px;
	height:250px;
	top:-3px;
	left:-80px;
}
/*
	Slideshow
*/

#slides {
	position:absolute;
	top:0px;
	left:4px;
	z-index:100;
}



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

.slides_container {
	width:900px;
	margin-left:0px;
	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 {
	width:950px;
	height:250px;
	display:block;
	padding:0;
	top:0;
}

.next, .prev {
	position:absolute;
	top:92px;
	width:55px;
	height:70px;
	display:block;
	z-index:5000;
}
.prev {
	left:-88px;
}
.next {
	left:920px;
}


.pagination {
display:none;
}