/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	margin: 0px;
	display:block;
	width:20px;
	height:15px;
	background:url(images/left.png) no-repeat;
	cursor:pointer;
	font-size:1px;
	float: left;
	position: relative;
	top: -70px;
	right:25px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -15px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}

/* next button uses another background image */
a.next, a.nextPage {
	margin: 0px;
	background-image:url(images/right.png);
	float: right;
	left:30px;
	}

