.shake
      .shake.inline {
      display:inline-block
      }
			
      @-webkit-keyframes spaceboots {
      0% { -webkit-transform: translate(2px, 1px) rotate(0deg); }
      10% { -webkit-transform: translate(-1px, -2px) rotate(-1deg); }
      20% { -webkit-transform: translate(-3px, 0px) rotate(1deg); }
      30% { -webkit-transform: translate(0px, 2px) rotate(0deg); }
      40% { -webkit-transform: translate(1px, -1px) rotate(1deg); }
      50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
      60% { -webkit-transform: translate(-3px, 1px) rotate(0deg); }
      70% { -webkit-transform: translate(2px, 1px) rotate(-1deg); }
      80% { -webkit-transform: translate(-1px, -1px) rotate(1deg); }
      90% { -webkit-transform: translate(2px, 2px) rotate(0deg); }
      100% { -webkit-transform: translate(1px, -2px) rotate(-1deg); }
      }
		  
      .shake:hover,
      .shake:focus {
      -webkit-animation-name: spaceboots;
      -webkit-animation-duration: 0.8s;
      -webkit-transform-origin:50% 50%;
      -webkit-animation-iteration-count: infinite;
      -webkit-animation-timing-function: linear;
      }
      
      .link {
       -webkit-transition: 0.25s;
      transition: 0.25s;
      margin-bottom: 3px;
      -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: pixelated;
      }

      .link:hover {
      transform: scale(1.5, 1.5);
      -webkit-transition: 0.1s;
      transition: 0.1s;
      }
      
      a:link {
      color: #896336;
      background-color: transparent;
      text-decoration: none;
      }
      
      a:visited {
      color: 	#5d3b16;
      background-color: transparent;
      text-decoration: none;
      }
      
      a:hover {
      color: #957345;
      background-color: transparent;
      }
      
      @keyframes ScanlineAnimationRight {
  	  0% {transform: translateX(0px) translateY(0px);}100% {transform: translateX(32px) translateY(-32px);}
  	  }
  	  
      @keyframes ScanlineAnimationLeft {
  	  0% {transform: translateX(0px) translateY(0px);}100% {transform: translateX(-32px) translateY(-32px);}
  	  }
          
      .glow:hover {
      filter: brightness(1.5);}
      
      hr.biv {
      height:1px;
      border:2px inset #808080;
      background-color:#808080;
      }