/*
	Slideshow
*/

#products {
	margin: 0;
	float: left;
	display: inline;
	width: 460px;
	height:450px;
}

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

#products .slides_container {
	width:100%;
	overflow:hidden;
	float:left;
	position:relative;
	border: none;
	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:460px;
	height:450px;
	display:block;
}

/*
	Next/prev buttons
*/

#products .next, #products .prev {
	position:relative;
	/*top:127px;*/
	left:0;
	width:21px;
	height:0;
	padding-top:22px;
	overflow:hidden;
	display:block;
	z-index:101;
}

#products .prev {
	background:url(../img/arrow-prev.png);
}

#products .next {
	left:22px;
	top: -22px;
	background:url(../img/arrow-next.png);
}

/*
	Pagination
*/

#products .pagination {
	background:#dfdfdf;
	width:130px;
	padding:5px 5px;
	float:left;
	margin-left:30px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

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

#products .pagination li a {
	display:block;
	width:55px;
	height:42px;
	margin:1px;
	float:left;
	background:#f9f9f9;
}

#products .pagination li.current a {
	border:1px solid #7f7f7f;
	margin:0;
}