/*  Slides container - Important:
			Set the width of your slides container
			Set to display none, prevents content flash */
#slides {
	position:relative;
}
.slides_container {
	width:950px;
	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 {
	width:950px;
	height:600px;
	display:block;
}
/* Optional: Reset list default style */
		

.pagination {
	position:relative;
	bottom:75px;
	list-style:none;
	margin:0 auto;
	padding:0 0 0 40px;
	width:180px;
	height:45px;
	background: transparent url(images/control_bg.png) no-repeat;
	overflow:visible;
	z-index:100;
}
.pagination li {
	border:none;
	float:left;
	width:17px;
	height:45px;
	font-size:9px;
	padding:0;
	
}
.pagination li:first-child{
padding-left:7px;
}
.pagination a {
	display:block;
	width:17px;
	height:45px;
	background: transparent url(images/control_dot.png) no-repeat center center;
	color:rgba(255,0,0,0);
}
/*  Optional:
			Show the current slide in the pagination */
.pagination .current a {
	
	background: transparent url(images/control_dot_active.png) no-repeat center center;
	color:rgba(255,0,0,0);
}
/*  previous and next arrows*/
a.prev {
	display:block;
	height:45px;
	width:45px;
	position:absolute;
	bottom:75px;
	left:370px;
	background: transparent url(images/control_prev.png) no-repeat center center;
	z-index:200;
	color:rgba(255,0,0,0);
}
a.next {
	display:block;
	height:45px;
	width:45px;
	position:absolute;
	bottom:75px;
	right:410px;
	background: transparent url(images/control_next.png) no-repeat center center;
	z-index:200;
	color:rgba(255,0,0,0);
}
