/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.1
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	right:50%;
	bottom:26px;
	cursor:pointer;
	overflow:hidden;
	width:47px;
	height:47px;
	border:none;
	text-indent:-999px;
	z-index:20;
	background:url(../images/ui.totop.gif?t=20200320) no-repeat left 0px;
}

#toTop:hover {
	background:url(../images/ui.totop.gif?t=20200320) no-repeat left -47px;
	width:47px;
	height:47px;
	display:block;
	overflow:hidden;
	float:left;
}

#toTop:active, #toTop:focus {
	outline:none;
}

