
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 240px;	
	height:210px;
	
	
	/* custom decorations */
	padding:10px 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.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:3px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	text-align:left;
	width:240px;
	padding:0;
	-moz-border-radius:5px;
	vertical-align:top;
	display:block;
}

/* active item */
div.scrollable div.items div.active {
	background-color:#fff;
}

#scrollbox{
display:block;
position:relative;
overflow:hidden;	 	
width: 240px;	
margin:0;
padding:0;
}
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
position:relative;
	width:12px;
	height:9px;
	float:right;
	background-repeat:no-repeat;
	overflow:hidden;
	cursor:pointer;
	z-index:1;
}

/* mouseover state 
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}*/

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.prev, a.prevPage{
	background-image:url(left.gif);
	margin:0px 52px 0 0;
}
a.next, a.nextPage {
	background-image:url(right.gif);
	margin:-12px 38px 0 0;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:8px;
	width:50px;
	height:12px;
	text-align:left;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:2px;
	background:url(navigator.gif) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
}
#playerfoot{
position:fixed;
width:100%;
height: 50px; 
bottom: 0px;
} 	