@charset "utf-8";
/************************************************************************************************/
/* position and dimensions of the navigator */
.navi {
	width:80px;
	height:20px;
	position:absolute;
	z-index:10;
	top:330px;
	left:55px;
}

.navi_arrow {
	width:200px;
	height:20px;
	position:absolute;
	z-index:10;
	top:329px;
	left:0px;
}

.nextpage {
	left:140px;
}

#actions a {		
	cursor:pointer;
	color:#6d6d6f;
	font-size:12px;
	font-weight:bold;
}

#actions a:hover {
	text-decoration:none;
	color:#000;
}

.disabled {
	visibility:hidden;		
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

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

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



/* main vertical scroll */
#main {
	position:relative;
	overflow:hidden;
	height: 360px;
	width:650px;
	padding-left:50px;
}

/* root element for pages */
#pages {
	position:absolute;
	height:20000em;
}

/* single page */
.page {
	padding:10px;
	height: 360px;
	width:160px;
}

/* root element for horizontal scrollables */
.scrollable {
	position:relative;
	overflow:hidden;
	width: 160px;
	height: 360px;
}

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

/* single scrollable item */
.item {
	float:left;
	width:160px;
	height:360px;
}



