/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable1 {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 690px;	
	height:140px;	
	
	/* custom decorations */
	padding:10px 0;	
	border:1px outset #ccc;
	background-color:#efefef;				
}

/* 
	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.scrollable1 div.items1 {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:5px;
}

/* single scrollable item */
div.scrollable1 div.items1 div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:130px;
	padding:5px 0px;
	font-size:12px;
	font-family: 'bitstream vera sans';
	border:1px outset #ccc;
	background-color: #ddd;
	margin-right: 5px;	
	-moz-border-radius:5px;
}

/* active item */
div.scrollable1 div.items1 div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

div.scrollable1 a:link, div.scrollable1 a:active, div.scrollable1 a:visited {
	text-decoration: none;
	color: #800000;
	font-size:14px;
	color: #990000;	
	text-align: right;
}

/*  this is used in news.php  */
div.scrollable1 a:hover {
	text-decoration: none;
	font-size: 14px;
	color: #003399;
	text-align: right;
}

