/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
.hscroll {
	/* required settings */
	position:absolute;
	overflow:hidden;	 	
	height:350px;
	width:1100px;
	left:0;
	top:0;	
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.hscroll .items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;
}

.hscroll .items div {
	position:relative;
	float:left;
	height:350px;
	width:1100px;
	padding:0;
	margin:0;
	display:block;
	background-repeat:no-repeat;
	-o-background-size: 100% 100%, auto;
	-moz-background-size: 100% 100%, auto;
	-webkit-background-size: 100% 100%, auto;
	background-size: 100% 100%, auto;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next{
	position:absolute;
	top:160px;
	width:30px; 
	height:30px; 
	background-repeat:no-repeat;
	cursor:pointer;
	display:block;
}

/* prev button uses another background image */
a.prev{
	left:25px;
	background-image:url(../images/bt-left.png);
}
/* next button uses another background image */
a.next{
	right:25px;
	background-image:url(../images/bt-right.png);
}
a.prev:hover,a.next:hover{
	background-position:0 -40px;
}

/* items inside navigator */
.navi {
	position:absolute;
	bottom:10px;
	left:517px;
}
.navi a {
    width:10px;
    height:10px;
    float:left;
    margin:4px;
    display:block;
    font-size:1px;
	background:rgba(255,255,255,0.5);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px; /* for old Konqueror browsers */
}

/* mouseover state */
.navi a:hover {
	background:rgba(0,0,0,0.5);
}

/* active state (current page state) */
.navi a.active {
	background:rgba(0,0,0,0.5);
}