<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:15px;
	right:15px;
	overflow:hidden;
	cursor: pointer;
	width:36px;
	height:36px;
	/*
	z-index: 100;
	*/
	text-indent:100%;
    /* theme bg color */
	background: #8B8B8B url(../img/template/ui.totop.png) no-repeat center center;
	opacity: 0.8;
	-webkit-transition:0.5s;
	-moz-transition:0.5s;
	-o-transition:0.5s;
	transition:0.5s;
}

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

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