/* this makes it possible to add next button beside scrollable */
#wp-page-tabs .scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
#wp-page-tabs a.browse {
	background:url(../images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	margin:16px 0px;
	cursor:pointer;
	font-size:1px;
	position:absolute;
}

/* right */
#wp-page-tabs a.right 				{ background-position: 0 -30px; clear:right; right: 10px;}
#wp-page-tabs a.right:hover 		{ background-position:-30px -30px; }
#wp-page-tabs a.right:active 	{ background-position:-60px -30px; } 


/* left */
#wp-page-tabs a.left				{ left: 77px; } 
#wp-page-tabs a.left:hover  		{ background-position:-30px 0; }
#wp-page-tabs a.left:active  	{ background-position:-60px 0; }

/* up and down */
#wp-page-tabs a.up, #wp-page-tabs a.down		{  
	float: none;
	margin: 10px 50px;
}

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

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


/* disabled navigational button */
#wp-page-tabs a.disabled {
	visibility:hidden !important;		
} 	


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#wp-page-tabs .scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 700px;
	height:60px;
	margin-left:46px;
	/* custom decorations */
	
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
#wp-page-tabs .scrollable .items {
	/* this cannot be too large */
	width:2000em;
	position:absolute;
	clear:both;
	 font-family: Helvetica;
}

#wp-page-tabs .items div {
	float:left;
	width:680px;
}

/* single scrollable item */
#wp-page-tabs .scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
#wp-page-tabs .scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}




