#go-top {
    position: fixed;
	width: 60px;
	height: 60px;
    bottom: 50px;
    right: 50px;
    display: none;
}
#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	width: 50px;
	height: 50px;
	background-color: #525252;

	-webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;

   color: #fff;
   font-size: 21px;
   line-height: 50px;
 	border-radius: 100%;
}
#go-top a:hover { background-color: #0F9095; }