/*--------------------------------------------------------------
## ToTop button
--------------------------------------------------------------*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: -999em;   
  overflow: hidden;
  width: 51px;
  height: 51px;
  background:url(../images/ui.totop.png);
  background-position:0 0px;
  z-index: 999;
  text-align: center;
  
}
  #toTop span {
    display: none; }
	
  
  #toTop:focus {
    outline: none; }

@media (min-width: 769px) {
	#toTop {
		right: 40px;
		bottom: 40px;
		background:url(../images/ui.totop.png);
	    background-position:0 0;
	}
	#toTop:hover {
		background:url(../images/ui.totop.png);
	    background-position:0 51px;
	}
}
@media (max-width: 768px) {
	#toTop {
		right:0;
		bottom: 10px;
		width:51px;
		background:url(../images/ui.totop-mob.png);
	    background-position:0 0;
	}
	#toTop:hover {
		background:url(../images/ui.totop-mob.png);
	    background-position:0 51px;
	}
}	