@charset "UTF-8";

#slides {z-index: 30;}

/*
	Slideshow style
*/

/*#slides {
	z-index:100;
}*/

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides-container {
	width:300px;
	height:176px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides .slide, #slides2 .slide, #slides3 .slide {
	width:300px;
	height:176px;
	display:block;
}

/*
	Pagination
*/

.pagination {
	position: relative;
	top:5px;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:20px;
	height:0;
	padding-top:20px;
	background-image:url(/static/professional-products/images/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -20px;
}
