/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.1
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;

	bottom:50px;
	overflow:hidden;
	width:47px;
	height:47px;
	border:none;
	text-indent:-999px;
	z-index:120;
	background:url(../images/ui.totop.png) no-repeat left bottom;
	
	-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}

#toTop:hover {
	background:url(../images/ui.totop.png) no-repeat left 0;
	
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;

outline:none;
}

