/*
	Cyclomedia Scroller Object - v 0.1
	
	CSS file
	
	This is seperate from the javascript to ensure that the object degrades for
	users with javascript disabled: the browser's own overflow scrollbars will
	be used and the custom scroll hover buttons will be invisible.
	
	In order for the Javascript to be able to override the settings in this
	file it must be loaded, in the pages HEAD section *after* this file
*/

div.scroller
{
	overflow:			scroll;			/* default for users with JS disabled */
	position: 			relative;
}

div.scrollinner
{
	position: 			absolute;
	left:				0px;
	top:				0px;
}




