#area {
	width: 100%;
	float:left;
}
/* root element for scrollable */
#scroller {
	/* required settings */
	position:relative;
	overflow:hidden;
	float:left;
	/* vertical scrollables have typically larger height than width but not now */
	height:376px;
	width: 100%;
}
/* root element for scrollable items */
#scroller .items {
	position:absolute;
	/* this time we have very large space for the height */
	width:20000em;
}
#scroller .items .item {
	width: 100%;
	height:376px;
	float: left;
}
#scroller .items .item a.image {
	display: block;
	width: 100%;
	height:376px;
	margin: 0 auto;
}
.navi {
	width: 100px;
	margin:280px auto 0;
	position:relative;
	z-index:9999;
	display:none;
}
.navi a {
	width: 15px;
	height: 16px;
	float: left;
	margin: 3px;
	background: url(../images/sliderBg.png) 0 0 no-repeat;
	display: block;
}
.navi a:hover {
	background-position:0 -16px;
}
.navi a.active {
	background-position: 0 -16px;
}
