#go-top {
  position: fixed; 
  bottom: 70px; 
  right: 7%;
  text-align: center;
  cursor:pointer; 
  display:none;
  width: 90px;
  height: 90px;
  line-height: 45px;
  border-radius: 45px;
	background: #f4fffb;
	opacity: 0.7; /* Значение прозрачности */
	filter: alpha(Opacity=70); /* Прозрачность в IE */
}

#go-top:hover {
	opacity: 1; /* Значение прозрачности */
	filter: alpha(Opacity=100); /* Прозрачность в IE */
  	background: #f4fffb ;	
	color: #fff;
	
}