/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.1
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	left:52%;
	margin-left: 502px;
	bottom:44px;
	cursor:pointer;
	overflow:hidden;
	width: 55px;
	height: 55px;
	border:none;
	text-indent:-999px;
	z-index:20;
	background:url(../images/top.png) no-repeat left 0px;
}



#toTop:hover {
	background-position: right 0;
	display:block;
	overflow:hidden;
	float:left;
}

#toTop:active, #toTop:focus {
	outline:none;
}

