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

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	left:50%;
	margin-left: 555px;
	bottom:53px;
	cursor:pointer;
	overflow:hidden;
	width:29px;
	height:29px;
	border:none;
	text-indent:-999px;
	z-index:20;
	background:url(../images/ui.totop.png) no-repeat left 0px;
}


#toTop:hover {
	background:url(../images/ui.totop.png) no-repeat left -29px;
	width:29px;
	height:29px;
	display:block;
	overflow:hidden;
	float:left;
}

#toTop:active, #toTop:focus {
	outline:none;
}

