
#scroll_holder {
	position: absolute;
	z-index: 1;
	left: 20px;
	top: 268px;
	width: 970px;
	
	color: #000;
	font-size: 11px;
}


.scrollable {
	position: relative;
	overflow: hidden;
	width: 850px;
	height: 15px;
	float:left;	
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width: 850px;
}


/* active item */
.scrollable .active {
}


.scroll_nav {
	float: right;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/scrollable.gif) no-repeat;
	display:block;
	width:19px;
	height:14px;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 			{ background-position: -20px 0; }
a.right:hover 	{ background-position: -20px -15px; }
a.right:active 	{ background-position: -20px -30px; } 


/* left */
a.left			{ margin-left: 0px; } 
a.left:hover  	{ background-position: 0 -15px; }
a.left:active  	{ background-position: 0 -30px; }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


/* position and dimensions of the navigator */
.navi {
	float: left;
	height:12px;
	padding: 0 1px 0 2px;
}

/* items inside navigator */
.navi a {
	width:16px;
	height:12px;
	float:left;
	margin: 1px 2px 0 1px;
	background: url(../images/scrollable.gif) -40px 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position: -40px -15px;      
}

/* active state (current page state) */
.navi a.active {
	background-position: -40px -30px;     
}


