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

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:30px;
	right:30px;
	overflow:hidden;
	width:45px;
	height:45px;
	z-index: 30;
	border:none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	opacity: 0.7;
	cursor: pointer;
	-webkit-transition: all 0.3s;
				-moz-transition: all 0.3s;
				-o-transition: all 0.3s;
				transition: all 0.3s;
}
#toTop:after{
	display: block;
	position: absolute;
	content: "";
	width:45px;
	height:45px;
	top:0;
	left:0;
	text-align: center;
	background-color: #000000;
	background-image: url('../img/arrow-top.png');
	background-repeat: no-repeat;
	background-size: 30px auto;
	background-position: center;
}
#toTop:hover{
	opacity: 0.9;
}
#toTopHover {
	
	width:45px;
	height:45px;
	display:block;
	overflow:hidden;
	float:left;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

#toTop:active, #toTop:focus {
	outline:none;
}
@media (max-width: 1370px) {

	#toTop{
		bottom:10px;
		right:10px;
	}

}
@media (max-width: 1024px) {

	#toTop{
		display: none !important;
	}

}	