/* main vertical scroll */
#main {
	position:relative;
	overflow:hidden;
	height: 500px;
}
 
/* root element for pages */
#pages {
	position:absolute;
	height:20000em;
}
 
/* single page */
.page {
	padding:0px;
	width: 740px;
	height: 500px;
}
 
/* root element for horizontal scrollables */
.scrollable {
	position:relative;
	top:-34px;
	overflow:hidden;
	width: 740px;
	height: 445px;
	border-top:1px solid #534b48;
	padding-top:5px;
	margin:15px 0px 0px 5px;
}
 
/* root element for scrollable items */
.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
}
 
/* single scrollable item */
.item {
	float:left;
	cursor:pointer;
	width: 740px;
	height: 400px;
}
 
/* main navigator */
#main_navi {
	float:left;
	padding:0px !important;
	margin:0px !important;
}
 
#main_navi li {
	clear:both;
	list-style-type:none;
	cursor:pointer;
	height:15px;
}
 
#main_navi li:hover {
	color:#0093c0;
}
 
#main_navi li.active {
	color:#0093c0;
}
 
#main_navi img {
	float:left;
	margin-right:10px;
}
 
#main_navi strong {
	display:block;
}
 
#main div.navi {
	margin-left:250px;
	cursor:pointer;
}
/* DEPRECATED FILE */




/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}


a.jhide {
	display:block;
	padding:10px 0px;
	float:left;
	cursor:pointer;
	font-size:12px;
	z-index:9999;
	position:relative;
	top:435px;
	text-align:center;	
}


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage, a.jnext, a.jprev {
	display:block;
	padding:3px 0px;
	float:left;
	cursor:pointer;
	font-size:12px;
	z-index:9999;
	position:relative;
	top:435px;
	text-align:center;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover, a.jnext:hover, a.jprev:hover  {
	filter:alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;				
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage, a.jnext {
	float:right;		
}



/*********** navigator ***********/


/* 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-color:#FBFBFB;*/
	display:block;
	font-size:13px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	
