
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 655px; 
    height:120px; 
} 
 
/* 
    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 ul.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute;
	clear:both;
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items li { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items li.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background: url(../images/episodes/scrollable_arrow.png) no-repeat;
	display:block;
	width:19px;
	height:19px;
	float:left;
	cursor:pointer;
	font-size:1px;
	margin:40px 10px 0;
}

/* right */
a.right	{ background-position: 0 -20px; clear:right; margin-right: 0px;}
/* left */
a.left	{ margin-left: 0px; } 

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