

/* single page */


/* root element for horizontal scrollables */
.scrollable {
	position:relative;
	overflow:hidden;
	width: 400px;
	height: 350px;
	float:left; 
	/*background-image:url(../images/plain.jpg); background-repeat:none;	*/
	border:1px solid #666666;
}

/* root element for scrollable items */
.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.item {
	float:left;
	cursor:pointer;
	width:400px;
	height:350px;
	padding:10px;
}

.item  IMG	{border:none;}

.item H2,.item A	{color:#666666;}



.navi {
	cursor:pointer;
	display:block;
	width:190px;
	font-weight:normal;
}


/* 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 {
	display:block;
	width:18px;
	height:18px;
	background:url(../img/scrollable/arrow/left.png) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
	font-size:1px;
}

/* 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.next, a.nextPage {
	background-image:url(../img/scrollable/arrow/right.png);
	clear:right;	
}

/* items inside navigator */
div.navi a {
	display:block;
	z-index:99;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	height:20px;
	size:12px;
	white-space:nowrap;
}

div.navi a:hover {
	text-decoration:underline;
}


