@charset "utf-8";

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */
	height: 210px;
	width: 220px;
	border: 1px solid #CCCCCC;
}

/* root element for scrollable items */
div.scrollable div.items {
	position:relative;
	padding-right: 5px;
	padding-left: 5px;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	display:block;
	width:15px;
	height:15px;
	cursor:pointer;
	background-repeat: no-repeat;
	background-image: url(../images/scroll_back.png);
	margin-left: 205px;
}

a.next, a.nextPage {
	display:block;
	width:15px;
	height:15px;
	cursor:pointer;
	background-repeat: no-repeat;
	background-image: url(../images/scroll_forward.png);
	margin-left: 205px;
}

/* mouseover state */

a.prev:hover, a.prevPage:hover {
	display:block;
	width:15px;
	height:15px;
	cursor:pointer;
	background-repeat: no-repeat;
	background-image: url(../images/scroll_back_h.png);
	margin-left: 205px;
}

a.next:hover, a.nextPage:hover {
	display:block;
	width:15px;
	height:15px;
	cursor:pointer;
	background-repeat: no-repeat;
	background-image: url(../images/scroll_forward_h.png);
	margin-left: 205px;
}

/* disabled navigational button */

a.disabled {
	visibility:hidden !important;
}

/*********** navigator items ***********/

/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}

/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/navigator.png) 0 0 no-repeat;
	cursor:pointer;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;
} 	
