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

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom: 64px;
	right: 50px;
	overflow:hidden;
	width:47px;
	height:47px;
	border:none;
	text-indent:100%;
	background:url(/files/css/images/up2.svg) no-repeat left top;
	z-index: 999;
	opacity: 0.7;
	-moz-opacity: 0.7;
	filter:alpha(opacity=0.7);
}

#toTop:hover {
    opacity: 1;
	-moz-opacity: 1;
	filter:alpha(opacity=1);
}

#toTopHover {
	background:url(/files/css/images/up2.svg) no-repeat left -51px;
	width:51px;
	height:51px;
	display:block;
	overflow:hidden;
	float:left;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

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

@media all and (max-width:750px){
    #toTop {
        bottom: 100px;
        right: 30px;
    }
}