<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:81px;
	right:15px;
	overflow:hidden;
	width:56px;
	height:56px;
	border:none;
	text-indent:100%;
	background:#333 url(../images/ui.totop.png) no-repeat left top;
	z-index:999;
	border-radius:100%;
	box-shadow:0px 5px 8px 0px rgba(0,0,0,0.25),0px 0px 2px 0px rgba(0,0,0,0.25);
}

#toTopHover {
	background:#333 url(../images/ui.totop.png) no-repeat left -56px;
	width:56px;
	height:56px;
	display:block;
	overflow:hidden;
	float:left;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

#toTop:active, #toTop:focus {
	outline:none;
}</pre></body></html>