<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* this makes it possible to add next button beside scrollable */
#autoblog div#list-properties {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
#autoblog a.prev, #autoblog a.next, #autoblog a.prevPage, #autoblog a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(./images/left.png) no-repeat;
	float:left;
	margin:70px 10px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
#autoblog a.prev:hover, #autoblog a.next:hover, #autoblog a.prevPage:hover, #autoblog a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
#autoblog a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
#autoblog a.next, #autoblog a.nextPage {
	background-image:url(./images/right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
#autoblog div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
#autoblog div.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 */
#autoblog div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
#autoblog div.navi a.active {
	background-position:0 -16px;     
}</pre></body></html>