/* position and dimensions of the navigator */
.navi {
	position:absolute;
	top:250px;
	height:60px;
	width:460px;
	z-index:3001;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {background-position:0 -8px;}

/* active state (current page state) */
.navi a.active {background-position:0 -16px;}




.scrollable {
	position:relative;
	overflow:hidden;
	width: 655px;
	height:370px;
}

.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable .item {
	float:left;
	width:655px;
	height:370px;
	text-align:center;
}

.scrollable .overlayText {
	position:absolute;
	bottom:0;
	z-index:3000;
	background:url(scrollable/arrow/blackTransparencyBg.png) 0 0 repeat;
	width:655px; 
	height:126px;
}
.scrollable h4 {color:#FFFFFF; margin-top:14px; margin-left:10px; text-align:left;}
.scrollable a{color:#FFFFFF; text-decoration:none;}
.scrollable a:hover {text-decoration:underline;}
.scrollable .itemDesc {
	color:#FFFFFF;
	text-align:left;
	margin-top:6px;
	padding:0 10px 10px 10px;
}


/* single scrollable item */
.scrollable .itemImage {height:370px; position:relative;}

/* active item */
.scrollable .active {position:relative;	cursor:default;}


/* this makes it possible to add next button beside scrollable */
.scrollable {float:left;}

/* prev, next, prevPage and nextPage buttons */
.scrollable a.browse {
	position:absolute;
	top:150px;
	width:30px;
	height:60px;
	z-index:3000;
	opacity:0.7;
	background:url(scrollable/arrow/hori_large.png) 0 0 no-repeat;
	cursor:pointer;
}

/* right */
.scrollable a.right 		{ right:0px; background-position:-30px 0px;}
.scrollable a.right:hover 	{ background-position:-30px -60px; }



/* left */
.scrollable a.left			{ left:0px;background-position:0px 0px;} 
.scrollable a.left:hover  	{ background-position:0px -60px; }


/* disabled navigational button */
.scrollable a.disabled {
	visibility:hidden !important;		
} 	