
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 370px;	
	height:35px;	
	
	/* custom decorations */
	padding:0 10px;	
	border:1px none red;
	background:url(../../common/img/navbg.gif);
	background-position: -20px 2px;
	background-repeat: no-repeat;			
}

.line{
position:relative;
overflow:hidden;	 	
width: 25px;	
height:40px;	
background:url(../../common/img/navbg.gif);
background-position: 0 2px;
background-repeat: no-repeat;	
border:1px none blue;
float:left;
}


/* 
	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:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:5px;
	
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	width:108px;
	height:45px;
	padding:0 0 0 0;
	color: #008b98;
	text-decoration: none;
	border:1px none #ccc;
	margin-right: 20px;	
	
}

div.items a {
	display:block;
	width:108px;
	height:28px;
	border:1px none black;
	text-align:center;
	color: #008b98;
	text-decoration: none;
	border:1px none black;
	font: normal 9px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
	
}

div.items a:hover {
	color: #008b98;
	background-color:#e5e5e5
	}


/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}


