/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
    width: 600px;
    height: 440px;
}

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

.photo {
	width: 800px;
}
*/

/* single scrollable item */
.scrollable img {
	margin:0;
	cursor:pointer;
	height: 399px;	
	z-index: -1;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

#gallery h1 {
	text-align: center;
	margin-bottom: 0;
}

#gallery .navi {
	position: relative;
	top: -25px;
	z-index: 1000;
	width: 597px;
}

#gallery .prev {
	float: left;
	z-index: 100;
}

#gallery .next {
	float: right;
	z-index: 100;
}
