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

#toTop {
	display:none;
	text-decoration:none;
	position:absolute;
	top:-30px;
	left:50%;
	margin-left:-30px;
	width:60px;
	height:60px;
	z-index: 100;
	border:none;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	opacity: 1;
	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: "\f077";
	font-family: FontAwesome;
	width:60px;
	height:60px;
	top:0;
	left:0;
	text-align: center;
	line-height: 54px;
	color: #ffffff;
	background: #5db746;
	border: 2px solid #5db746;
	font-size: 24px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.3s;
				-moz-transition: all 0.3s;
				-o-transition: all 0.3s;
				transition: all 0.3s;
}

#toTopHover {
	
	width:60px;
	height:60px;
	display:block;
	overflow:hidden;
	float:left;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

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

	#toTop:hover:after{
		color: #5db746;
		background: #ffffff;
	}

}	