@charset "UTF-8";


/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable {
	/* required settings */ 
    position:absolute;
	overflow:hidden;
	width: 852px;
	height:450px;
	background-color: #0A0A0A;
} 
 
/* 
    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 width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items {
	width:20000em;
	position:absolute;
} 
 

a.browse {
	-moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
	cursor:pointer;
	float:left;
	font-size:1px;
	height:30px;
	position: absolute;
	z-index: 3;
	left: 792px;
	top: 410px;
	margin-left: 25px;
}
a.right {
	background-position:0 -30px;
	clear:right;
}
a.right:hover {
background-position:-30px -30px;
}

a.left {
margin-left:0;
}
a.left:hover {
background-position:-30px 0;
}

a.up:hover {
background-position:-30px 0;
}

a.down:hover {
background-position:-30px -30px;
}
a.disabled {
visibility:hidden !important;
}

