/* root element for horizontal scrollables */
.scrollable {
	position:relative;
	overflow-y:auto;
	overflow-x: hidden;
	width: 530px;
	border: 0px solid black;
	/* single page */
	/*padding: 10px;*/
	min-height: 590px; 
	/*background:#222 url(http://static.flowplayer.org/img/global/gradient/h600.png) 0 0 repeat-x; */
	width:530px;
}

/* root element for scrollable items */
.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
	/*padding-top: 0.5em;*/
}

/* single scrollable item */
.item {
	float:left;
	/*cursor:pointer;*/
	width:510px;
	height:100%;
	margin-left:10px;
	margin-top: 10px;
    border: 0px solid black;
}


/* 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;	
}



/* ********** navigator ********** */


/* position and dimensions of the navigator */
#navi {
	border: 0px solid white;
	height: 16px;
	list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Arial', 'Verdana';
    font-size: 16px;
    line-height: 16px;
}

/* items inside navigator */
#navi li {
    float: left;
    margin-right:0.5em;
    margin-left:0.5em;
}

#navi li a {
    margin-right: 0.5em;
    text-decoration: none;
}

/* mouseover state */
#navi a:hover {
	     
}

/* active state (current page state) */
.currentNav {
	font-weight: bold;   
} 	

