
/* DEPRECATED FILE */




/* this makes it possible to add next button beside scrollable */
.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 {
	margin-left:500px;
	padding-left:500px;
	top:200px;
	width:100px;
	height:15px;
	position:relative;
	z-index:5;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;
	background-image: url(../images/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
} 	


/* from main file */

	/* main vertical scroll */
	#main {
	position:relative;
	overflow:hidden;
	height: 245px;
	width:833px;
	/*background-color:#e7e7e7;*/
	background-image: url(../images/eeqaz.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	}
	
	/* root element for pages */
	#pages {
		position:absolute;
		height:20000em;
	}
	
	/* single page */
	.page {
		padding:10px;
		height: 245px;
		width:814px;
	}
	
	/* root element for horizontal scrollables */
	.scrollable {
		position:relative;
		overflow:hidden;
		width: 804px;
		height: 235px;
		margin:0px !important;
		padding:0px !important;
		top:-25px;
	}
	
	/* root element for scrollable items */
	.scrollable .items {
		width:20000em;
		position:absolute;
		clear:both;
	}
	
	/* single scrollable item */
	.item {
		float:left;
		cursor:pointer;
		width:764px;
		height:245px;
		/*padding:10px;*/
		padding-right:5px;
		padding-left:25px;
	}
	
	.item h2{
		text-align:right;
	}
	.item p{
		text-align:justify;
	}
	
	/* main navigator */
	#main_navi {
		float:right;
		padding:0px !important;
		padding-right: 145px !important;
		margin:0px !important;
		display:inline-block;
		clear:both;
		position:relative;
		z-index:3;
		top:12px;
	}
	
	#main_navi li {
		background-color:#333;
		/*clear:both;*/
		color:#FFFFFF;
		/*font-size:12px;*/
		height:20px;
		list-style-type:none;
		padding:10px;
		width:95px;
		cursor:pointer;
		float:right;
		display:inline-block;
		z-index:200;
		background-image: url(../images/tab.gif);
		background-repeat: no-repeat;
		color: #6f6f6f;
		text-decoration: none;
		font-weight: bold;
		text-align:center;
	}
	
	
	#main_navi li:hover {
		background-color:#444;
		color: #000;
		text-decoration: none;
		font-weight: bold;
	}
	
	#main_navi li.active {
		background-color:#e7e7e7;
		background-image: url(../images/tab_Active.gif);
		background-repeat: no-repeat;
	}
	
	#main_navi img {
		float:left;
		margin-right:10px;
	}
	
	#main_navi strong {
		display:block;
	}
	
	#main div.navi {
		margin-right:675px;
		cursor:pointer;
	}