/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 925px;
	height:90px;

	/* custom decorations */
}

/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable .content{
	float:left;
	margin:5px 5px 20px 5px;
	padding:2px;
	width:172px;
	height:75px;
	overflow:hidden;
	
		
}


.scrollable .content a { font:11px tahoma; color:#ffeaee; text-decoration: none; }
.scrollable .content a:hover { font:11px tahoma; color:#ffd1d9; text-decoration: none; }
.scrollable .content a h1{ font:12px tahoma; color:#fec101; text-decoration: none; font-weight: bold; line-height:12px;}
.scrollable .content a:hover h1{ font:12px tahoma; color:#fff; text-decoration: none; font-weight: bold; line-height:12px;}
.scrollable .content a .thumb{ float: left; margin-top:2px }
.scrollable .content a:hover .thumb{ float: left; margin-top:2px }
.scrollable .content a .add{ float: left; margin: 2px 5px 0px 0px; }
.scrollable .content a:hover .add{ float: left; margin: 2px 5px 0px 0px; }

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../js/hori_large_jana.png) no-repeat;
	display:block;
	width:15px;
	height:86px;
	float:left;
	margin:2px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -89px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-17px -89px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-16px 0; }
a.left:active  	{ background-position:-60px 0; }


