/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom: 145px;
	right: 15px;
	overflow:hidden;
	width:37px;
	height:37px;
	border:none;
	text-indent:100%;
	background:url(../images/ui.totop.png) no-repeat left top;
	opacity: 0.6;
	-moz-opacity: 0.6;
	filter:alpha(opacity=60);
}

#toTopHover {
	background:url(../images/ui.totop.png) no-repeat left bottom;
	width:37px;
	height:37px;
	display:block;
	overflow:hidden;
	float:left;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

#toTop:active, #toTop:hover, #toTop:focus {
	outline:none;
	opacity: 1;
	-moz-opacity: 1;
	filter:alpha(opacity=100);
}