
/* this makes it possible to add next button beside scrollable */
.scrollable
{
	float: left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse
{
	display: block;
	width: 20px;
	height: 81px;
	float: left;
	margin: 40px 0px;
	cursor: pointer;
	font-size: 1px;
}

/* right */
a.right
{
	background: url(/images/scroll-right.gif) no-repeat;
	background-position: 0px 26px;
	clear: right;
	margin-right: 0px;
	margin-left:5px;
}
a.right:hover
{
	background-color:#333
}


/* left */
a.left
{
	background: url(/images/scroll-left.gif) no-repeat;
	background-position: 6px 26px;
	clear: right;
	margin-right: 0px;
}
a.left:hover
{
	background-color:#333;
}
