@charset "utf-8";
/* CSS Document */

#products {
	width:500px;
}

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

#products .slides_container {
	width:488px;
	padding:0 5px;
	background-color:#fff;
	overflow:hidden;
	position:relative;
	text-align:center;
	border:1px solid #f9f9f9;
	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:488px;
	height:350px;
	display:block;
}

/*
	Next/prev buttons
*/

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

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

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

/*
	Pagination
*/
.pagSec{
	background:#f9f9f9;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	margin-top:20px;
	height:44px;
	}

#products .pagination {
	float:left;	
}

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

#products .pagination li a {
	display:block;
	width:36px;
	height:36px;
	margin:1px;
	float:left;
	background:#f9f9f9;
	border:1px solid #e0e0e0;
}

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

.alternate{
	height:36px;
	width:200px;
	text-align:center;
	line-height:40px;
	font-size:12px;
	float:left;
	}