/*
	imageRotate.css
	Standard styling for ImageRotator
	*/
	
ul.imageRotate {
	position:relative;
}
	
ul.imageRotate,ul.imageRotate li {
	/* remove list styling */
	list-style-type:none;
	margin:0;
	padding:0;
}

ul.imageRotate li {
	/* position items over the top of each other */
	position:absolute;
	top:0; left:0;
	/* hide them initially and only display the 1st, so if Javascript is off we don't see a mess. */
	display:none;
}
/* reinstate visible first pane */
ul.imageRotate li.first {
	display:block;
}