/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#rss_ticker {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 280px;
	height:300px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
#rss_ticker .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

#rss_ticker div {
	float:left;
	width:280px;
	height:300px;
}



/* active item */
#rss_ticker .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}




/* position and dimensions of the navigator */
.navi {float: right; margin: 2px 0 0 0}


/* items inside navigator */
.navi a {
	width: 10px;
	height: 10px;
	margin: 0 0 0 5px;
	background: #96172E;
	display: inline-block;
	font-size: 1px;
}

/* mouseover state */
.navi a:hover {background: #696969}

/* active state (current page state) */
.navi a.active {background: #87887E}

