 

#slides {

	position:relative;
	width:630px;
	height:440px;
	margin:0 0 0 0;
	padding:0;
}

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

.slides_container {
	width:630px;
	overflow:hidden;
	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 a {
	width:630px;
	height:440px;
	display:block;
}

.slides_container a img {
	display:block;
}

/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:140px;
	left:10px;
	width:30px;
	height:30px;
	display:block;
	z-index:101;
	display:none;
}

#slides .next {
	left:940px;
	background:url(arrows.png) no-repeat 100% 0;
}

#slides .prev {
	background:url(arrows.png) no-repeat;
	
}
#slides .next:hover,
#slides .prev:hover {opacity:0.5;-moz-opacity:0.5;-khtml-opacity: 0.5; filter:alpha(opacity=50);}
/*
	Pagination
*/

.pagination {
	position:absolute;
	right:12px;
	 bottom:12px;
	 z-index:400;
	margin:26px auto 0;
	width:auto;
	display:inline-block;
	zoom:1;
	*display:inline;
	height:20px;
	overflow:hidden;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:22px;
	height:20px;
	padding-top:12px;
	background-image:url(bullets.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
	text-indent:-999em;
}

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

/*
	Footer
*/
 