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

}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:30px;
	height:19px;
	float:left;
	cursor:pointer;
	background-image: url(../images/index/btPrecedent.png);
	background-repeat: no-repeat;
	background-position: 0px -19px;
	margin: 0px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px 0px;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/index/btSuivant.png);
	clear:right;
}

