/*
	Slideshow
*/

#products {
}

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

#products .slides_container {
	width: 650px;
	overflow: hidden;
	/* [disabled]float:left; */
	position: relative;
	display: none;
	height: 320px;
}

/*
	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 img{
	width: 650px;
	height: 320px;
	display: block;
	/* [disabled]margin-left: 20px; */
}

/*
	Next/prev buttons
*/

#products .next,#products .prev {
	position:absolute;
	top:115px;
	left:5px;
	width:25px;
	height:90px;
	overflow:hidden;
	display:block;
	z-index:101;
	text-indent: -9999pt;
}

#products .prev {
	background: url(../img/slide/arrow_left.gif) no-repeat;
}

#products .next {
	left:620px;
	background:url(../img/slide/arrow_right.gif) no-repeat;
}

/*
	Pagination
*/

#products .pagination {
	width: 650px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	height: 60px;
	margin-left: -4px;
	margin-top: -2px;
}

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

#products .pagination li a {
	display: block;
	width: 125px;
	height: 61px;
	float: left;
	padding-top: 10px;
	margin-right: 1px;
	margin-left: 1px;
}
#products .pagination li a img {
	border: 1px solid #E6E6E6;
}

#products .pagination li.current a {
	background: url(../img/slide/mark_triangle.gif) no-repeat center 1px;
	display: block;
	padding-top: 10px;
}
#products .pagination li.current a img{
	border: 2px solid #981316;
}

a:link,a:visited {
}

a:hover,a:active {
}
