#toTop {
	text-align: center;
	padding: 7px 5px;
	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: 3px;
	border-bottom: 1px solid #B1B3B5;
	border-bottom: 2px solid #B3B5B7;
	background: #E1E3E1;
	color: #838587;
	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 {
	background: #343534;
	color: #F2F2F2;
	border-color: #121212;
}

#toTop:active, #toTop:focus {
	outline: none;
}