/*
	Slideshow
*/

#slides {
    position:relative;
	width:320px;
}

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

.slides_container {
	width:320px;
	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:320px;
	height:130px;
	display:block;
}

.slides_container a img {
	display:block;
}

/*
	Pagination
*/

.pagination {
    bottom: 16px;
    position: absolute;
    right: 24px;
    z-index:9;
}

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

.pagination li a {
    background:#0471BA;
	display:block;
	width:12px;
	height:0;
    padding-top:12px;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background:#CCC;
}
