/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 450px;
	height:255px;
	padding:0;
	margin:0;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:5000px;
	position:absolute;
	left: 0px;
	top: 0px;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div {
	float:left;
	width:450px;
}

.items div h4#h4{
	position:absolute;
	top:3px;
	left:0px;
	width: 100%;
	text-align: center;
	color: #333333;
	font-size:15px;
	/*text-shadow: 0 0 8px #000;*/
	padding:5px;
	z-index:95;
	display:none;
}


/* position and dimensions of the navigator */
.navi {
	height:20px;
	z-index:70;
	float:right;
	padding-top: 2px;
	padding-right: 5px;
}


/* items inside navigator */
.navi a {
	width:13px;
	height:13px;
	margin:3px;
	background:url("../../../../img/design/fpredesign/sliderNaviInactive.png") repeat scroll 0 0 transparent;
	display:inline-block;
	font-size:1px;
	z-index:91;
}

/* mouseover state */
.navi a:hover {
	/*background-position:0px -22px;      */
}

/* active state (current page state) */
.navi a.active {
	background:url("../../../../img/design/fpredesign/sliderNaviActive.png") repeat scroll 0 0 transparent;
	z-index:99;

}


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(img/hori_large.jpg) no-repeat;
	display:block;
	width:30px;
	height:30px;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
	z-index:60;
	position:absolute;
	top:149px;
	opacity:0.4;
	filter: alpha(opacity = 40);
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
}


/* right */
a.right{ 
	background-position: 0 -30px; 
	clear:right; 
	margin-right: 0px;
	right:10px;
}
a.right:hover 		{ background-position:-30px -30px;opacity:1; filter: alpha(opacity = 100);}
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left{ 
	margin-left: 0px;
	left:10px;
} 
a.left:hover  		{ background-position:-30px 0; opacity:1; filter: alpha(opacity = 100);}
a.left:active  	{ background-position:-60px 0; }


