@charset "utf-8";
/* CSS Document */

/***********scrol*************/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable_3OBJ {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 195px;
	height:82px;
	z-index:20;
	margin:6px 0 0 0px;
}
/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable_3OBJ .items_3OBJ {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}
/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items_3OBJ div.item_3OBJ {
	float:left;
	width:198px;
	height:150px;
}
.items_3OBJ div.item_3OBJ img {
	width:63px;
	height:80px;
}


.world_cn .prev {
	cursor:pointer;
	width:12px;
	height:13px;
	z-index:50;
	margin:35px 0 0 -5px;
	position:absolute;

}
.world_cn .next {
	cursor:pointer;
	width:12px;
	height:13px;
	z-index:50;
	margin:35px 0 0 190px;
	position:absolute;
}
/**********fine scrol********************/