/* this makes it possible to add next button beside scrollable */


/* prev, next, prevPage and nextPage buttons */
a.browse{
    float:left;
    width:15px;
    height:37px;
    position:relative;
    top:20px;
}
/* right */
a.right{ background:transparent url('/images/rightarrow.gif') no-repeat 0 0;
    margin-left:30px !important;}


/* left */
a.left{ background:transparent url('/images/leftarrow.gif') no-repeat 0 0;
       margin-right:40px}


/* disabled navigational button */
a.disabled,.disabled {
	visibility:hidden !important;
}
/* position and dimensions of the navigator */
.navi {
	margin:0 auto;
	width:500px;
    text-align:center;
	height:20px;
    clear:both;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;

	margin:0 3px 1px 0;
	background:url(/images/navigator.png) 0 0 no-repeat;
	display:inline-block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;
}

