/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	width: 800px;
	height: 350px;
	float: left;
	padding: 10px 0;
	overflow: hidden;
	
}
div.scrollable .title a {
	color: #000000;
	padding-top: 5px;
	display: block;
	padding-bottom: 5px;
}

div.scrollable  .node_read_more {display:none;}
div.scrollable  .title {
	margin:0;
	text-align: center;
	padding: 4px;
	background-color: none;
}
div.scrollable .field-info-article-publication{
	color:#444;
}
div.scrollable .field-photo-illustration{
	padding: 4px 0px;
}
div.scrollable div.links{
	background-image: url(../img/blockbas.gif);
	background-repeat: no-repeat;
	background-position: right top;
	height: 40px;
	font-size: 1em;

}


/* 
	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;
	margin: 0 0 0 10px;
}

/* single scrollable item */
div.scrollable div.items .node {
	float:left;
	/* custom decoration */
	text-align:center;
	width:180px;
	font-size:0.9em;
	background-color: #FFFFFF;
	margin-right: 20px;
	-moz-border-radius:5px;
	background-image: url(../img/block.gif);
	background-repeat: repeat-y;
	background-position: right;
}
div.scrollable div.items .node div,div.scrollable div.items .node h2{
padding: 0 10px;

}
div.scrollable div.items .node h2{
background: none;
}
/* active item */
div.scrollable div.items div.active {
}

