/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 780px;
	height:240px;
	float:left;
}

/*
	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;
}

.items div {
	float:left;
	width:780px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	width:780px;
	height:240px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:40px;
	height:75px;
	float:left;
	cursor:pointer;
	font-size:1px;
	background-image: url(../images/banner/arrows-deselected.png);
	background-repeat: no-repeat;
}

/* right */
a.right 				{
	clear:right;
	background-position: right;
	height: 75px;
	width: 40px;
	margin-top: 85px;
	margin-left: 10px;
}
a.right:hover 		{
	background-image: url(../images/banner/arrows-selected.png);
}
a.right:active 	{
	background-image: url(../images/banner/arrows-selected.png);
} 


/* left */
a.left				{
	background-position: left;
	height: 75px;
	width: 40px;
	margin-top: 85px;
	margin-right: 10px;
} 
a.left:hover  		{
	background-image: url(../images/banner/arrows-selected.png);
}
a.left:active  	{
	background-image: url(../images/banner/arrows-selected.png);
}

/* up and down */
a.up, a.down		{
	background:img/button
.png;
	float: none;
	background-image: url(../images/banner/arrows-selected.png);
}

/* up */
a.up:hover  		{
}
a.up:active  		{
}

/* down */
a.down 				{
}
a.down:hover  		{
}
a.down:active  	{
} 


/* disabled navigational button */
a.disabled {
	visibility:visible !important;
	background-image: url(../images/banner/arrows-disabled.png);
} 	
