#toTop {
	text-align: center;
	padding: 8px 4px;
	position: fixed; /* this is the magic */
	bottom: 10px; /* together with this to put the div at the bottom*/
	right: 10px;
	cursor: pointer;
	display: none;
	font-size: 22px;
	border-radius: 1px; 
	background: rgba(0,0,0,.12);
	color: #3D3D3D;
        border-radius: 36px;
	z-index: 99999;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#toTop:hover {
	opacity: .6;
}

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