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

a.prevPage {
	display:block;
	width:50px;
	background:url('/img/gdc_vault/featuredContent_leftButton.gif') no-repeat;
	height:59px;
}

a.nextPage {
	display:block;
	background:url('/img/gdc_vault/featuredContent_rightButton.gif') no-repeat;
	width:30px;
	height:59px;
}

/* up and down */
a.up, a.down		{ 
	background:url(../img/scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
#previousFeaturedBtn a.featuredButtonDisabled {
	background:url('/img/gdc_vault/featuredContent_leftButton_inactive.png') no-repeat !important;		
	cursor:default;
} 	

#nextFeaturedBtn a.featuredButtonDisabled {
	background:url('/img/gdc_vault/featuredContent_rightButton_inactive.png') no-repeat !important;
	cursor:default;		
} 	
