@charset "UTF-8";

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable { /* required settings */
	position: relative;
	overflow: hidden;
	width: 800px;
	height: 320px;

}

/*
	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: 2400px;
	height: 320px;
	position: absolute;
	clear: both;
}

.items div {
	float: left;
	width: 800px;
	height: 320px;
}

/* active item */
.scrollable .active {
	border: 2px solid #000;
	position: relative;
	cursor: default;
}



/* single scrollable item */
.scrollable img {
border:1px solid #A4872B;
float:left;
height:90px;
margin-right: 10px;
margin-left: 20px;
padding:2px;
width:145px;
}



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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background-color: fuchsia;
	/*display:block;*/
	width: 40px;
	height: 100px;
	float: left;
	cursor: pointer;
	font-size: 1px;
}

/* right */
a.right {
	background: url(images/arrow_right_photo_a.png) no-repeat;
	margin-right: 0px;
}

a.right:hover {
	background-position: 0px -100px;
}

a.right:active {
	/*background-position: -60px -30px;*/
}

/* left */
a.left {
	background: url(images/arrow_left_photo_a.png) no-repeat;
	margin-left: 0px;
}

a.left:hover {
	background-position: 0px -100px;
	
}

a.left:active {
	background-position: -60px 0;*/
}

/* up and down */
a.up,a.down {
	background: url(../img/scrollable/arrow/vert_large.png) no-repeat;
	float: none;
}

/* up */
a.up:hover {
	background-position: -30px 0;
}

a.up:active {
	background-position: -60px 0;
}

/* down */
a.down {
	background-position: 0 -30px;
}

a.down:hover {
	background-position: -30px -30px;
}

a.down:active {
	background-position: -60px -30px;
}

/* disabled navigational button */
a.disabled {
	visibility: hidden !important;
}

/*----------------------------------------------*/
	/* position and dimensions of the navigator */
.navi {
	/*width: 80px;*/
	height: 20px;
	/*background: url(images/box_prod.jpg);*/
	background-repeat: no-repeat;
	border:0px;
}

/* items inside navigator */
.navi a {
	width: 20px;
	height: 20px;
	float: left;
	margin: 0px;
	display: block;
	background: url(images/button_hover.png) no-repeat;
	font-size: 1px;
	border:0px;
}

/* mouseover state */
.navi a:hover {
	background: url(images/button_a.png) no-repeat;
	background-repeat: no-repeat;
	border:0px;
}

/* active state (current page state) */
.navi a.active {
	background: url(images/button_a.png) no-repeat;
	background-repeat: no-repeat;
	border:0px;
}
/*----------------------------------------------*/



