.glyphicon{
	cursor: pointer;
}

.body_holder{
	visibility:hidden;
}

table tbody tr.hilite td {
  border-top:solid 4px blue;
  border-bottom:solid 4px blue !important;
  color:blue;
}

.animated {
   background-color: violet;
   -webkit-animation-duration: 3s;
   animation-duration: 3s;
   -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
   animation-iteration-count: infinite;
}

@keyframes flash {
   0%, 50%, 100% {
      opacity: 1;
   }
   25%, 75% {
      opacity: 0;
   }
}

.flash {
   animation-name: flash;
}