/*
	Slideshow
*/

#slides {
	position:relative;
	margin:auto;
	width:840px;
	height:350px;
	background:#333333;
	z-index:100;
	border:solid 2px white;
	border-bottom:none;
}

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

.slides_container {
	overflow:hidden;
	position:relative;
	display:none;
	margin:auto;
	width:840px;
	height:350px;
}

/*
	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 div.slide {
	width:840px;
	height:350px;
	display:block;
}
.slides_container div.slide a img {
	float:left;
}
/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:117px;
	left:-37px;
	display:block;
	z-index:101;
}

#slides .next {
	left:585px;
}

/*
	Pagination
*/

.pagination {
	display:none !important;
}

/*
	Caption
*/

.caption {
	float:right;
	width:150px;
	margin-top:25px;
	/*margin-top:-280px;*/
	text-align:left;
	/*z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:30px;
	padding:5px 20px 0 20px;
	background:#000;
	background:rgba(0,0,0,.5);
	width:540px;
	font-size:13px;
	line-height:1.33;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;*/
}
.caption .ssPrice {
	font-size:33px;
	letter-spacing:-2px;
	font-family:'OpenSansLight', 'Trebuchet MS', Verdana, arial, sans-serif;
}
.caption .ssDetails {
	margin-top:10px;
	color:#656565;
}