﻿
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 700px;	
	height:12px;	
	
	/* custom decorations */
	padding:12px 0;	
	
}

/* 
	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 */
	text-align:center;
	width:100px;
	height:10px;	
	padding:7px 10px;
	font-size:11px;
	font-family: 'arial';
	
	background-color: #2A78A6;
	margin-right: 5px;	
	-moz-border-radius:5px;
	color:#FFF;
}

/* active item */
div.scrollable div.items div.active {
	
	background-color:#0D2257;

}

.catActivaPorDefault {
		
	background-color:#0D2257;
	color:lime;

}


