
/* 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:18px;
	height:18px;
	background:url(../images/jQuery/left.png) no-repeat;
	float:left;
	margin:43px 5px;
	cursor:pointer;
}
*/
a.nextVer
{
	float:left;
	/*width:18px;
	height:18px;*/
	width:35px;
	height:24px;
	/*background:url(../images/jQuery/down.png) no-repeat;*/
	background:url(../images/jQuery/NextVert.jpg) no-repeat;
	cursor:pointer;
	margin-left:55px;
}
a.prevVer
{
	float:left;
	margin-left:40px;
	/*width:18px;
	height:18px;*/
	width:35px;
	height:24px;
	/*background:url(../images/jQuery/up.png) no-repeat;*/
	background:url(../images/jQuery/PrevVert.jpg) no-repeat;
	cursor:pointer;
}
/* mouseover state 
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover,a.prevVer:hover,a.nextVer:hover {
	background-position:0px -18px;		
}
*/
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
/*a.next, a.nextPage {
	background-image:url(../images/jQuery/right.png);
	clear:right;	
}*/
a.prevPage
{
	/* BEFORE ME
	float:left;
	background-image:url(../images/GoldArrowLeft.jpg);
	background-repeat:no-repeat;
	width:17px;
	height:44px;	
	margin-top:100px;
	margin-left:2px;
	cursor:pointer;*/
	background-image:url(../images/PhotosLeftArrow.png);
	background-repeat:no-repeat;
	width:44px;
	height:45px;			
	cursor:pointer;
	position:absolute;
	top:123px;
	left:0px;
}

a.nextPage
{
	/*margin-top:100px;
	float:left;
	background-image:url(../images/GoldArrowRight.jpg);
	background-repeat:no-repeat;
	width:17px;
	height:44px;	
	cursor:pointer;
	margin-right:2px;*/
	background-image:url(../images/PhotosRightArrow.png);
	background-repeat:no-repeat;
	width:44px;
	height:45px;			
	cursor:pointer;
	position:absolute;
	top:123px;
	right:0px;
}


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi 
{	
	/*margin-right:17px;
	width:auto;
	float:right;
	height:20px;
	clear:both;	*/
	position:absolute;
	bottom:2px;
	right:17px;
	height:20px;
	width:auto;	
	clear:both;
}

/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/jQuery/navigator2.png) 0 0 no-repeat;     
	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;     
}