
/* 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 {
	margin-left:300px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/scrollable/arrow/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;     
} 	


/* OTHER */
#main1 {
	position:relative;
	overflow:hidden;
	height: 288px;
	border-top: 4px solid #fefcf2;
	border-right: 4px solid #fefcf2;
	border-bottom: 5px solid #fefcf2;
}

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

/* single page */
.page {
	padding:10px;
	height: 288px;
	background-color:#fff;
	width:495px;
	padding-left:12.5px;
}

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

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

/* single scrollable item */
.item {
	float:left;
	cursor:pointer;
	width:485px;
	height:270px;
	padding:0px;
	position:relative;
}

/* main navigator */
#main_navi {
	float:left;
	padding:0px !important;
	margin:0px !important;
	border-top: 4px solid #fefcf2;
	border-left: 4px solid #fefcf2;
	border-bottom: 5px solid #fefcf2;
}

#main_navi li {
	background-color:#fefcf2;
	/*border-top:1px solid #FFF;*/
	clear:both;
	color:#333;
	height:75px;
	list-style-type:none;
	padding:10px;
	width:151px;
	cursor:pointer;
}

#main_navi li:hover {
	background-color:#fbf8ed;
}

#main_navi li.active {
	background-color:#FFF;
}

#main_navi img {
	float:left;
	margin-right:5px;
}

#main_navi strong {
	display:block;
}

#main1 div.navi {
	margin-left:100px;
	cursor:pointer;
}

.item_text {
	position:absolute;
	z-index:10;
	color:white;
	font-size:30px;
	background-color:#333;
	padding:10px;
	filter: alpha(opacity=80); /* internet explorer */
	-khtml-opacity: 0.8;      /* khtml, old safari */
	-moz-opacity: 0.8;       /* mozilla, netscape */
	opacity: 0.8;           /* fx, safari, opera */

	top:20px;
	left:20px;
}
.item_text2 {
}
.item_text a:link{
	color:white;
}
.item_text a:hover{
	color:white;

}
.item_text a:visited{
	color:white;

}




