.btnFlash {
	color: #FFF;
  background-color: #FF6600;
  border: 2px solid #FF6600;
  border-radius: 30px;
  font-weight: 700;
  padding: 8px 25px;
  font-size: 12px;
  margin-bottom:2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  
	background-color: #004A7F;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
  0% { background-color: #FF6600; -webkit-box-shadow: 0 0 3px #FF6600; }
  50% { background-color: #FF0000; -webkit-box-shadow: 0 0 20px #FF0000; }
  100% { background-color: #FF6600; -webkit-box-shadow: 0 0 3px #FF6600; }
}

@-moz-keyframes glowing {
  0% { background-color: #FF6600; -moz-box-shadow: 0 0 3px #FF6600; }
  50% { background-color: #FF0000; -moz-box-shadow: 0 0 20px #FF0000; }
  100% { background-color: #FF6600; -moz-box-shadow: 0 0 3px #FF6600; }
}

@-o-keyframes glowing {
  0% { background-color: #FF6600; box-shadow: 0 0 3px #FF6600; }
  50% { background-color: #FF0000; box-shadow: 0 0 20px #FF0000; }
  100% { background-color: #FF6600; box-shadow: 0 0 3px #FF6600; }
}

@keyframes glowing {
  0% { background-color: #FF6600; box-shadow: 0 0 3px #FF6600; }
  50% { background-color: #FF0000; box-shadow: 0 0 20px #FF0000; }
  100% { background-color: #FF6600; box-shadow: 0 0 3px #FF6600; }
}