/*
	Slideshow
*/

#catslides {
/*	position:absolute;
	top:15px;
	left:4px;
	z-index:100;*/
	display: block;
	float: none;
	clear: both;
	position: relative;
        margin-bottom:16px;
}

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

#catslides .slides_container {
	width:720px;
	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
*/

#catslides .slides_container a {
	width:720px;
	height:304px;
	display:block;
}

#catslides .slides_container a img {
	display:block;
}

/*
	Next/prev buttons
*/

#catslides .next, #catslides .prev {
	/* position:absolute;
	top:107px;
	left:-39px;
	width:24px;
	height:43px;
	display:block;
	z-index:101; */
	display:  none;
}

#catslides .next {
	/*left:585px;*/
}

/*
	Pagination
*/

#catslides .pagination {
    left: 5px;
    position: absolute;
    top: 285px;
    width: 200px;
    z-index: 10;
}

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

#catslides .pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../images/sprite.png);
	background-position:-192px -4px;
	float:left;
	overflow:hidden;
}

#catslides .pagination li.current a {
	background-position:-192px -16px;
}


