@charset "utf-8";
/* CSS Document */
#scroller {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollables have typically larger height than width but not now */
	height: 200px;
	width: 100%;
	margin: 93px 0 0 0;
}

/* root element for scrollable items */
#scroller .items {
    position:absolute;
    width:20000em;    
}
#scroller .items .item {
    width: 900px;
    height: 300px;
    float: left;
}

#scroller .items .item a.image {
	display: block;
	width: 900px;
	height: 300px;
	
}
.navi {
	background-color:#C9252C;
	width: 100px;
	height:19px;
	margin: 0px auto;
	padding: 5px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
}
.navi a {
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	background: url(../images/navigator.png) 0 0 no-repeat;
	display: block;
	font-size: 1px;
}
.navi a:hover {
    background-position:0 -8px;      
}
.navi a.active {
	background-position: 0 -16px;
}