﻿shiftCaution {
    animation: flash 4s linear infinite;
	font-weight: bold;
    font-size: 11pt;
}

messageCaution {
    color:red;
	font-weight: bold;
    font-size: 11pt;
}

messageCaution2 {
    color:blue;
	font-weight: bold;
    font-size: 11pt;
}

@keyframes flash {
  0%,35%,60%,100%{
    opacity: 0;
  }

  25%{
    opacity: 1;
    color:red;
  }
  
  50%{
    opacity: 1;
    color:red;
  }
  
  75%{
    opacity: 1;
    color:red;
  }
  
}

.divInfomation{
    font-size:20pt;
    color:blue;
    font-weight: bold;
}