/*
 * thumbnail scroller
 */

div.thumbnail div.moviethumb
{
}

div.thumbnail div.moviethumb h5,
div.thumbnail div.moviethumb h6
{
	color: #3C6E98 !important;
	text-align: left;
	margin: 0;
	font-size: 9pt;
	font-weight: normal;
	padding: 0 3px;
}

div.thumbnail div.moviethumb h5
{
	font-weight: bold;
}

/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.thumbnail.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
	width: 584px;
	height: 190px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(/assets/images/h300.png) repeat-x;
} 
 
/* 
    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.thumbnail.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.thumbnail.scrollable div.items div { 
    float:left; 

	cursor: pointer;
	width: 164px;
	height: 135px;
	margin: 20px 5px 20px 5px;
	padding: 10px;
} 
 
/* you may want to setup some decorations to active the item */ 
div.thumbnail.scrollable div.items div.active { 
    border:1px inset #eee; 
    background-color:#ddd; 
}


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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background: url(/assets/images/scrollable/hori_large.png) no-repeat;
	_background: url(/assets/images/scrollable/hori_large.gif) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:10px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.browse.right 			{ background-position: 0 -30px; clear:right; float:right; margin-right:36px;}
a.browse.right:hover 	{ background-position:-30px -30px; }
a.browse.right:active 	{ background-position:-60px -30px; } 


/* left */
a.browse.left				{ margin-left: 0px; } 
a.browse.left:hover  		{ background-position:-30px 0; }
a.browse.left:active  	{ background-position:-60px 0; }

/* up and down */
a.browse.up, a.down		{ 
	background:url(/assets/images/scrollable/vert_large.png) no-repeat; 
	_background:url(/assets/images/scrollable/vert_large.gif) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.browse.up:hover  		{ background-position:-30px 0; }
a.browse.up:active  		{ background-position:-60px 0; }

/* down */
a.browse.down 				{ background-position: 0 -30px; }
a.browse.down:hover  		{ background-position:-30px -30px; }
a.browse.down:active  	{ background-position:-60px -30px; } 


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

