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

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

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable_4OBJ {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 680px;
	height:52px;
	z-index:20;
	margin:15px 0 0 13px;

}
/*
	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_4OBJ .items_4OBJ {
	/* 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_4OBJ div.item_4OBJ {
	float:left;
	width:680px;
	height:52px;
}
.items_4OBJ div.item_4OBJ .OBJ {
	width:158px;
	height:52px;
	padding:0 5px;
	border-left:1px solid #ccc;
}
.items_4OBJ div.item_4OBJ .OBJ h3 {
	color:#000;
	font-size:14px;
	line-height:13px;
}
.items_4OBJ div.item_4OBJ .OBJ img {
	border:1px solid #CCC;
	margin:0 2px 0 0;
}
.items_4OBJ div.item_4OBJ .OBJ h3:hover {
	text-decoration:underline
}

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

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