/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 620px;
	height:320px;
	clear:left;
	margin:20px 0;
	display:block;
}
/*
	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;
}
/* override single pane */
.scrollable div {

}
/* active item */
.scrollable .active {
	z-index:9999;
}
/* prev, next, prevPage and nextPage buttons */
a.browse {
	cursor:pointer;
	font-size:.8em;
}
/* right */
a.right {
	background-position: 0 -30px;
	margin-right: 0px;
}
a.right:hover {
	background-position:-30px -30px;
}
a.right:active {
	background-position:-60px -30px;
}
.prev, .next {
	cursor:pointer;
}
.prev {
	float:left;
	clear:left;
}
.next {
	float:right;
}
/* left */
a.left {
	margin-left: 0px;
}
a.left:hover {
	background-position:-30px 0;
}
a.left:active {
	background-position:-60px 0;
}
/* up and down */
a.up, a.down {
	background:url(../img/scrollable/arrow/vert_large.png) no-repeat;
	float: none;
	margin: 10px 50px;
}
/* up */
a.up:hover {
	background-position:-30px 0;
}
a.up:active {
	background-position:-60px 0;
}
/* down */
a.down {
	background-position: 0 -30px;
}
a.down:hover {
	background-position:-30px -30px;
}
a.down:active {
	background-position:-60px -30px;
}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}


.scrollableNav {
	display: inline-block !important;
}

/* position and dimensions of the navigator */
.navi {
	width:150px;
	height:20px;
	clear:both;
	display:block;
	position: relative;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}   
/* items inside navigator */
.navi a {
	width:10px;
	height:10px;
	float:left;
	margin:3px;
	display:block;
	border: 1px solid #F78B00;
}  
/* mouseover state */
.navi a:hover {
	background-color:#FF0000;
	cursor:pointer;
}  
/* active state (current page state) */
.navi a.active {
	background-color:#F78B00;
}

