/**
 * Jump to Top Styles
 */

#jump-to-top {
  height:   					32px;
  width:    					32px;
  position: 					fixed;
  right:    					5px;
  bottom:   					40px;
  Z-index:  					1;
  display:  					none;
  cursor:   					pointer;
}

#jump-to-bottom {
  height:   					32px;
  width:    					32px;
  position: 					fixed;
  right:    					5px;
  bottom:   					5px;
  Z-index:  					1;
  display:  					none;
  cursor:   					pointer;
  /* Flip the icon upside down */
  -webkit-transform:  scaleY(-1);
  -moz-transform:     scaleY(-1);
  -ms-transform:      scaleY(-1);
  -o-transform:       scaleY(-1);
  transform:          scaleY(-1);
}