/*
	Slideshow
*/



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

#products .slides_container {
	width:625px;
	overflow:hidden;
	float:left;
	position:relative;
	border: 0;
	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:625px;
	height:500px;
	display:block;
}

.slides_container div.slide {
	position: relative;
	bottom: 1px;
	width:625px;
	height:500px;
	display:block;
	text-align: center;
	margin: 0 auto;
	overflow: hidden;
}

/*
	Next/prev buttons
*/

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

#products .prev {
	float: left;
	background:url(arrow-prev.png);
}

#products .next {
	float: right;
	background:url(arrow-next.png);
}

/*
	Pagination
*/
#products .scroller {
	clear: both;
	width: 625px;
	overflow: auto;
}

#products .pagination {
	width: auto;
	background:#fff;
	padding:5px 5px;
	float:left;
}

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

#products .pagination li a {
	float:left;
	display:block;
	margin:5px;
	border: 2px solid #eaebec;
}

#products .pagination li.current a {
	border: 2px solid #33ccff;
	margin:5px;
}

.caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:30px;
	padding:5px 20px 0 10px;
	background:#fff;
	width:625px;
	font: 16px Georgia, Serif;
	font-weight: bold;
	color: #3B4044;
	border-top:1px solid #33ccff;
	text-shadow:none;
}

.caption a {
	float: right;
	text-align: left;
	display:block;
	width:70px;
	height:30px;
	margin:1px;
	float:left;
}