.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
  background-color:#fff;
}

.top_header{
 
    position: absolute;
 
    margin-left: 10px;
   z-index:999;
}
.singlepost{
    border: 0;
    background-color: #fff;
    color: #006;
    border-bottom: 0px solid #006;
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
}
h2{
  background-color:#9999CC;
}
h4{
  background-color:#99CCFF;
}
