/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 500px;
	height:200px;	
	background-image : url(images/backgroundtop.gif);
	background-position : top;
	background-repeat : repeat-x;
;

	/* custom decorations */
	border:0px solid #ccc;
}

/* override single pane */
.scrollable .block {
	float:left;
	display:block;
	width:450px;
	cursor:pointer;
	padding:20px 20px 0px 20px;
}
/*
	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.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img2 {
	float:left;
	margin:0px 0px 0px 0px;
	background-color:#ecedef;
	padding:1px;
	border:0px solid #ccc;
	width:73px;
	height:45px;
}

/* active item */
.scrollable .active {
	border:0px solid #000;
	z-index:9999;
	position:relative;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse_left {
	background:url(images/left_arrow.png) no-repeat;
	display:block;
	width:18px;
	height:18px;
	float:left;
	margin:90px 15px;
	cursor:pointer;
	font-size:1px; 
}

a.browse_right {
	background:url(images/right_arrow.png) no-repeat;
	display:block;
	width:18px;
	height:18px;
	float:left;
	margin:90px 15px;
	cursor:pointer;
	font-size:1px; 
}

/* right */
a.browse_right.right				{ background-position: 0 -18px; margin-right: 0px;}
a.browse_right.right:hover	{ background-position: 0px 0px; }
a.browse_right.right:active { background-position: 0px 0px; } 

/* left */
a.browse_left.left				  { background-position: 0 -18px; margin-left: 0px;} 
a.browse_left.left:hover  	{ background-position: 0px 0px;}
a.browse_left.left:active 	{ background-position: 0px 0px;} 

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	




