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

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

/*
	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.
*/
.scroll .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	
}

/* single scrollable item */
.scroll .items div { float:left; cursor:pointer; width:220px; height:105px; -webkit-border-radius:4px; }

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




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

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

/* right */
.one-box a.right, .scroll a.right:active
{ background-position: 0 -30px; clear:right; margin-right: 0px; position: absolute; top: 68px; left:180px; z-index:800;}

.one-box a.right:hover 
{ background-position:-30px -30px; }
.one-box a.right:active
{ background-position:-60px -30px; } 


/* left */
.one-box a.left, .scroll a.left:active
{ margin-left: 0px; position: absolute; top: 68px; left:10px; z-index:800;}

.one-box a.left:hover 
{ background-position:-30px 0; }
.one-box a.left:active 
{ background-position:-60px 0; }




/* container for slides */
.images {
	position:relative;	
	height:245px;
	
	width:459px;
	float:left;	
	cursor:pointer;
	}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0px;
	left:0;		
	height:245px;
}

/* header */
.images h3 {
	font-size:22px;
	font-weight:normal;
	margin:0 0 20px 0;
	color:#456;
}

/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	margin-left:330px;
}

/* single tab */
.tabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/tools/img/scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;		
}

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

/* active state (current page state) */
.tabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	background:#fff url(/templates/img/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }


/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}



/* THIS IS SCROLLMACHINES */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollmachines { /* required settings */ width: 760px; height:120px; padding-top: 25px; margin-left: auto; overflow: hidden; position: relative; z-index: 1; margin-right: auto; 
}

/*
	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.
*/
.scrollmachines .items { /* this cannot be too large */
	width:20000em; position:absolute; clear:both; z-index: 798; 
	
}

/* single scrollable item */
.scrollmachines .items div { float:left; cursor:pointer; width:220px; height:105px; -webkit-border-radius:4px; }

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




/* this makes it possible to add next button beside scrollable */
.scrollmachines { 
}

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

/* right */
#scrollmachinewrap a.right, .scroll a.right:active
{ background-position: 0 -30px; margin-right: 0px; position: absolute; top: 50px; z-index:801; clear: right; right: 34px; }

#scrollmachinewrap a.right:hover 
{ background-position:-30px -30px; }
#scrollmachinewrap a.right:active
{ background-position:-60px -30px; } 


/* left */
#scrollmachinewrap a.left, .scrollmachines a.left:active
{ margin-left: 0px; position: absolute; top: 50px; left:30px; z-index:800; }

#scrollmachinewrap a.left:hover 
{ background-position:-30px 0; }
#scrollmachinewrap a.left:active 
{ background-position:-60px 0; }
	
#scrollmachinewrap { position: relative; border: 1px solid #CCC; margin-bottom: 10px; -moz-border-radius: 8px; -webkit-border-radius:8px; margin-top: 20px;
 }
#scrollmachinewrap .highslide img { padding-right: 10px; padding-top: 0px; }

	

