

/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 400px;	
	height:78px;	
	background:url(http://www.djrickmitchell.com/images/jquery-scrollable/roundedcornr_400x78.gif) no-repeat;
	/* custom decorations */
    float: left;
	margin-top: 0px;
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:3000px;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:5px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
    text-align:center;
	width:69px;
	font-size:14px;
	font-weight: bold;
	font-family: 'Arial';
	color: grey !important;
	margin: 3px 10px 0px 0px;
	padding-bottom: 2px;
    -moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

/* active item */
div.scrollable div.items div.active {
	background-color:#cc0000;
}
div.scrollable div.items div.active a {
	color: blue !important;
	text-decoration: underline !important;
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, prevPage */
#scrollerdisplayright a.prev, #scrollerdisplayright a.prevPage {
	display:block;
	width:20px;
	height:20px;
	background:url(http://www.djrickmitchell.com/images/jquery-scrollable/left.png) no-repeat;
	float:left;
	margin:25px 1px 0px 0px;
	cursor:pointer;
}

/* mouseover state */
#scrollerdisplayright a.prev:hover, #scrollerdisplayright a.next:hover, #scrollerdisplayright a.prevPage:hover, #scrollerdisplayright a.nextPage:hover {
	background-position:0px -20px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
#scrollerdisplayright a.next, #scrollerdisplayright a.nextPage {
	display:block;
	width:20px;
	height:20px;
	background-image:url(http://www.djrickmitchell.com/images/jquery-scrollable/right.png);
    margin:25px 1px 0px 0px;
	float:left;
	cursor:pointer;
	clear:right;	
}


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:285px;
	width:200px;
	height:26px;
}
