/* DEPRECATED FILE */

/* 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 */
div.navi {
	width:auto;
	height:16px;
margin-top:4px;
	float:right;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px !important;
	background:url(images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

/* main vertical scroll */
#main {
	position:relative;
	overflow:hidden;
	height: 239px;
	width: 440px;
	float: left; 

}

/* root element for pages */
#pages {
	position:absolute;
	height:20000em;
}
/* single page */
.page {
	padding: 10px; 
	height: 229px;
	width: 440px;
	background: #eee;
}

/* root element for horizontal scrollables */
.scrollable {
	position:relative;
	overflow:hidden;
	width: 420px;
	height: 219px;
	background: #fff; 
	
}

.scrollable p { margin: 0; padding: 0; }

/* root element for scrollable items */
.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
}
/* single scrollable item */
.item {
	float:left;
	cursor:pointer;
	width:400px;
	height:229px;
	padding:10px;
	color: #620101;
	font-weight: bold;
}


/* main navigator */
#main_navi {
	float:left;
	padding:0px !important;
	margin:0px !important;
}
#main_navi li {
	background: none;
	border-bottom:1px solid #fff;
	clear:both;
	color:#FFFFFF;
	font-size:12px;
	height:50px;
	list-style-type:none;
	padding:10px;
	width:190px;
	cursor:pointer;
}
#main_navi li:hover {
	background-color: #22566E /* #374446 */;
}
#main_navi li.active {
	background-color: #252F31;
}
#main_navi img {
	float:left;
	margin-right:10px;
	width: 75px;
	height: 50px; 
}
#main_navi strong {
	font-weight: bold;
}
#main_navi strong, #main_navi em {
	display:block;
}
#main div.navi {
	margin-left:250px;
	cursor:pointer;
}



