
/* this makes it possible to add next button beside scrollable */


/* prev, next, prevPage and nextPage buttons */


/* right */
a.right
{
	background: url(../../css/scroll_img/arrow_right.gif) no-repeat;
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
	font-size: 1px;
	clear: right;
	position:relative;
	left:50px;
	bottom:26px;
}
a.right:hover
{
	background: url(../../css/scroll_img/arrow_right.gif) no-repeat;
}

/* left */
a.left
{
	background: url(../../css/scroll_img/arrow_left.gif) no-repeat;
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
	font-size: 1px;
	clear: right;
	position:relative;
	left:-20px;
	bottom:-4px;
}
a.left:hover
{
	background: url(../../css/scroll_img/arrow_left.gif) no-repeat;
}

/* disabled navigational button */
a.disabled
{
	 opacity: 100;
	 filter: alpha(opacity: 20);
}


