/* CSS Document */
a,img{border:0;}
#products {
	width:250px;
	position:relative;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

#products .slides_container {
	width:250px;
	overflow:hidden;
	position:relative;
	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:250px;
	height:183px;
	display:block;
}

/*
	Next/prev buttons
*/



/*
	Pagination
*/

#products .pagination {
    position:absolute;
	margin-left:130px;
	width:120px;
    text-align:content;
	z-index:9999;
	top:140px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

#products .pagination li {
	
	margin:2px 0px;
	list-style:none;
	float:left;
}

#products .pagination li a {
	display:block;
	width:14px;
	height:14px;
	margin:2px;
	background:url(../images/background/bai.png)  no-repeat;
}

#products .pagination li.current a { background:url(../images/background/huang.png) no-repeat; display:block;}



