/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.1
|--------------------------------------------------------------------------
*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	right:50%;
	bottom:100px;
	overflow:hidden;
	margin-right:-550px !important;
	width:54px;
	height:54px;
	border:none;
	text-indent:-999px;
	z-index:20;
	background:url(../images/totop.jpg) no-repeat 0 0;
		-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#toTop:hover {
	background-position:0 bottom;
}

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

@media only screen and (max-width: 767px) {
	#toTop {
		display:none !important;
	}
}