
/*
	Slideshow
*/

#slides {
	
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:980px;
	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 div.slide {
	width:980px;
	height:400px;
	display:block;
}



/*
	Pagination
*/

.pagination {
	display:none;
	margin:-20px 0 0 640px;
	width:300px;
	z-index:999;
	position:relative;
}

.pagination li {
	float:left;
	margin:0 5px;
	list-style:none;
	text-align:center;
	width:16px;
}

.pagination li a {
	display:block;
	height:0;
	padding:16px 0 0 10px;
	background-image:url(../images/pagiOff.png);
	background-repeat:no-repeat;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-image:url(../images/pagiOn.png);
}

/*
	locals
*/