
/*
	Slideshow
*/

#slides {
	
}

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

.slides_container {
	width:960px;
	overflow:hidden;
	position:relative;
	display:none;
	
	-webkit-box-shadow: 0 0 27px rgba(0, 0, 0, 0.5);
       -moz-box-shadow: 0 0 27px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 27px rgba(0, 0, 0, 0.5);
}

/*
	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:960px;
	height:300px;
	display:block;
}



/*
	Pagination
*/

.pagination {
	margin:12px auto 0 auto;
	width:600px;
}

.pagination li {
	float:left;
	margin:0 22px;
	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
*/