@charset "utf-8";
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 625px;
	height:150px;
	/*background:#0C3*/
	/* custom decorations */
}
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}
/* single scrollable item */
.scrollable img,{
	float:left;
	margin:20px 5px 0px 8px; /*===================↓↓复制↓↓===================*/
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:100px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
/*链接样式 于图片宽度高旭相同*/
.scrollable a{
	display:block;
	width:100px;
	height:100px;
	float:left;
}
/*滚动图片名称样式*/
.scrollable span{
	margin:5px 5px 0px 8px;/*===================↑↑黏贴↑↑===================*/
	display:block;
	width:100px;
	height:20px;
	text-align:center;
}
/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}



