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

.w_scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 600px;
	height:120px;


	/* custom decorations */
	border:0px solid #ccc;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.w_scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	overflow:hidden;
	list-style:none;
	padding:0;
	margin:0;
	display:none;
}
.w_scrollable .items li{
	float:left;
	margin:20px 5px 20px 15px;
	width: 130px;
	cursor: pointer;
	/*height:300px;*/
	vertical-align: middle;
}

/* single scrollable item */
.w_scrollable img {
	float:none;
	clear:both;
	margin:0px auto;
	background-color:#fff;
	padding:0px;
	border:0px solid #ccc;
	z-index:0;
	width: 130px;
/* leaving native dimentions of images	
	width: 885px;
	height:300px;
*/
}

/* active item */
.w_scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.w_scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.w_browse {
	background:url(img/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:5px 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.w_right 				{ background-position: 0 -30px; clear:right; margin-right: 5px;}
a.w_right:hover 		{ background-position:-30px -30px; }
a.w_right:active 	{ background-position:-60px -30px; } 


/* left */
a.w_left				{ margin-left: 5px; } 
a.w_left:hover  		{ background-position:-30px 0; }
a.w_left:active  	{ background-position:-60px 0; }






