
/* 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:76px;
	height:76px;
	background:url(http://vestadvertising.com/press/images/arrow_left_hover.png) no-repeat;
	float:left;
	margin:143px 10px;
	cursor:pointer;
	font-size:1px;
	opacity: .8;
	-webkit-transition-duration:500ms;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	opacity: 1;
	-webkit-transition-duration:500ms;
		
}


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(http://vestadvertising.com/press/images/arrow_right_hover.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:388px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:16px;
	height:16px;
	float:left;
	margin:0px;
	background:url(http://vestadvertising.com/press/images/dots.png) 0 -32px no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -16px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 0px;     
} 	

