
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 540px;
	height:35px;
	background-color:#f15a2b;

	/* 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.
*/
.scrollable .items {
	/* this cannot be too large */
	position:absolute;
	clear:both;
	
	
}

/* single scrollable item */
.scrollable a {

	
	width:56px;
	height:35px;
	display:block;
	float:left;
	line-height:28px;
	color:white;
	text-align:center;

	float:left;
	padding:2px;
	cursor:pointer;
	background-image:url('../imgs/pag/pag-bg.png');
	background-position:59px 0;

}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


.scrollable a{float:left;display:block;width:56px;font-size:14px;color:white;text-decoration:none;font-family:verdana}
.scrollable a:hover{color:#444334}


