@charset "iso-8859-9";
/* root element for scrollable */
div.scrollable {
	/* required settings */
	position:absolute;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */			 
	/*width: 320px;
	height: 256px;
	top: 40px;*/

}

/* root element for scrollable items */
.items {
	position:absolute;	/* this time we have very large space for height */	
	/* decoration 
	margin-top:10px;*/
}

.itemsHr{
width:20000em;
}
.itemsVr{
	height:20000em;
}


/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div.item {
	/*width:300px;
	height:80px;
	margin-bottom:8px;
	background-image: url(../../assets/listbg_up.png);
	background-repeat: no-repeat;
	background-position: left top;*/
	cursor:hand;
	cursor:pointer;
}

/* active item */
div.scrollable div.items div.item.active {
	/*background-image: url(../../assets/listbg_over.png);
	background-repeat: no-repeat;
	background-position: left top;*/
}
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	/*float:left;	*/	
}








/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	/*display:block;
	width:auto;
	height:auto;
	float:right;
	cursor:pointer;
	margin-top: 300px;
	padding-left: 6px;
	padding-right: 6px;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color:#f4f3e8;
	color:#bbbaae;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	text-decoration: none;*/
}
/* next button uses another background image */
a.next, a.nextPage {
	/*display:block;
	width:auto;
	height:auto;
	float:right;
	cursor:pointer;
	margin-top: 300px;
	margin-left: 10px;
	margin-right:10px;
	padding-left: 6px;
	padding-right: 6px;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color:#f4f3e8;
	color:#bbbaae;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	text-decoration: none;*/
}
/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	/*background-color:#ffffff;
    color:#8c8d8d;	*/
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

div.navi a {
background:transparent url(navigator.png) no-repeat scroll 0 0;
cursor:pointer;
float:left;
height:8px;
margin:3px;
width:8px;
}
div.navi a:hover {
background-position:0 -8px;
}
div.navi a.active {
background-position:0 -16px;
}
