#to-top {
	position: fixed;
	right: 1%;
	bottom: 10%;
	opacity: 0.35;
	z-index: 1000;
  -webkit-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -ms-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
 
#to-top:before, #to-top:after {
  content: "";
  position: absolute;
  z-index: -2;
}

#to-top:hover {
	opacity: 1;
}
 
#to-top, #to-top:hover {
	text-decoration: none;	
}