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

#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	overflow: hidden;
	width: 55px;
	height: 55px;
	border: none;
	text-indent: 100%;
	background: url(../images/ui_totop/totop.svg) no-repeat left top;
}

#toTop:hover {
	opacity: 0.7;
	-moz-transition: opacity .5s;
	-webkit-transition: opacity .5s;
	transition: opacity .5s;
}

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