/*
	root element for the scrollable.	when scrolling occurs this element stays still.
*/
.scrollablenews {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 170px;
	height:190px;
	padding:10px;
	/* custom decorations */
	/*border:1px solid #ccc;*/
	/*background:url(../images/h300.png) repeat-x;*/
}
.scrollablenews .itemsnews {
	height:20000em;
	position:absolute;
	clear:both;
	}
.itemsnews div {
	float:left;
	width:170px;
	height:210px;
}
/* position and dimensions of the navigator */
.navi {
	margin-left:8px;
	width:150px;
	height:20px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}
/*	
.scrollable {
	position:relative;
	overflow:hidden;
	width: 150px;
	height:140px;
	background:url(../images/h300.png) repeat-x;
}

.scrollable .items {
	height:20000em;
	position:absolute;
	clear:both;
}


.items div {
	float:left;
	width:150px;
}

.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
*/