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

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next {
	display:block;
	width:50px;
	height:45px;
	float:right;
	margin:0px;
	cursor:pointer;
}

a.prev {
	margin: 0px 0px 10px 0px;
	float: left;
	margin: 0px 0px 0px 0px;
	background: url("../../../img/prev-active.png"/*tpa=http://www.xtrgameservers.com/img/prev-active.png*/) no-repeat;
}

a.next {
	margin: 0px 0px 10px 0px;
	float:right;
	background: url("../../../img/next-active.png"/*tpa=http://www.xtrgameservers.com/img/next-active.png*/) no-repeat;
}


a.prev:hover {
	background:url("../../../img/prev-hover.png"/*tpa=http://www.xtrgameservers.com/img/prev-hover.png*/) no-repeat;		
}

a.next:hover {
	background: url("../../../img/next-hover.png"/*tpa=http://www.xtrgameservers.com/img/next-hover.png*/) no-repeat;		
}

/* disabled navigational button */
a.next.disabled {
	background:url("../../../img/next.png"/*tpa=http://www.xtrgameservers.com/img/next.png*/) no-repeat;		
}
a.prev.disabled {
	background:url("../../../img/prev.png"/*tpa=http://www.xtrgameservers.com/img/prev.png*/) no-repeat;		
}

a.next.disabled:hover {			
}
a.prev.disabled:hover {		
}


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background: #ff0000;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

