@import url(https://fonts.googleapis.com/css?family=Graduate|Oleo+Script);
  .wrapper {
    display: inline-block;
    width: 135px;
    height: 68px;
    vertical-align: top;
    cursor: pointer;
    position: relative;
    font-family: Tahoma;
    -webkit-perspective: 4000px;
       -moz-perspective: 4000px;
        -ms-perspective: 4000px;
         -o-perspective: 4000px;
            perspective: 4000px;
  }
  
  .item {
    height: 68px;
      -webkit-transform-style: preserve-3d;
         -moz-transform-style: preserve-3d;
          -ms-transform-style: preserve-3d;
           -o-transform-style: preserve-3d;
              transform-style: preserve-3d;
      -webkit-transition: -webkit-transform .6s;
         -moz-transition: -moz-transform .6s;
          -ms-transition: -ms-transform .6s;
           -o-transition: -o-transform .6s;
              transition: transform .6s;
    float: right;  }
  
    .item:hover {
      -webkit-transform: translateZ(-50px) rotateX(90deg);
         -moz-transform: translateZ(-50px) rotateX(90deg);
          -ms-transform: translateZ(-50px) rotateX(90deg);
           -o-transform: translateZ(-50px) rotateX(90deg);
              transform: translateZ(-50px) rotateX(90deg);
    }
    
      .item:hover img {
        box-shadow: none;
        border-radius: 15px;
      }
      
    .item img {
      display: block;
      position: absolute;
      top: 0;
      -webkit-transform: translateZ(50px);
         -moz-transform: translateZ(50px);
          -ms-transform: translateZ(50px);
           -o-transform: translateZ(50px);
              transform: translateZ(50px);
      -webkit-transition: all .6s;
         -moz-transition: all .6s;
          -ms-transition: all .6s;
           -o-transition: all .6s;
              transition: all .6s;
      
    }
.information a {
	font-size:10px;
	text-decoration:none;
}
    .item .information {
      display: block;
      position: absolute;
      height: 68px;
      width: 135px;
      text-align: left;
      background: white;
      font-size: 12px;
      text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
      box-shadow: none;
      -webkit-transform: rotateX(-90deg) translateZ(50px);
         -moz-transform: rotateX(-90deg) translateZ(50px);
          -ms-transform: rotateX(-90deg) translateZ(50px);
           -o-transform: rotateX(-90deg) translateZ(50px);
              transform: rotateX(-90deg) translateZ(50px);
      -webkit-transition: all .6s;
         -moz-transition: all .6s;
          -ms-transition: all .6s;
           -o-transition: all .6s;
              transition: all .6s;
      
    }