﻿.flashing_button, 
.alternate_flashing_button {
	padding: 10px;
	text-transform:uppercase;
	font-family: "DINBold", Arial, sans-serif;
	font-size:15px;
	line-height: 18px;
	color:#082347;
	border: 1px solid #c89127 !important;
	border-radius: 4px;
	text-shadow: 1px 1px 0 #f8ca71;
	cursor:pointer;
    text-decoration: none;
	margin-top:10px;
	margin-bottom: 10px;
	float:right;
    text-decoration: none;
}



@-webkit-keyframes glowing {
  0% { background-color: #E68A00; -webkit-box-shadow: 0 0 30px #E68A00; }
  50% { background-color: #FFF5E5; -webkit-box-shadow: 0 0 40px #FFF5E5; }
  100% { background-color: #E68A00; -webkit-box-shadow: 0 0 30px #E68A00; }
}

@-moz-keyframes glowing {
  0% { background-color: #E68A00; -moz-box-shadow: 0 0 30px #E68A00; }
  50% { background-color: #FFF5E5; -moz-box-shadow: 0 0 40px #FFF5E5; }
  100% { background-color: #E68A00; -moz-box-shadow: 0 0 30px #E68A00; }
}

@-o-keyframes glowing {
  0% { background-color: #E68A00; box-shadow: 0 0 30px #E68A00; }
  50% { background-color: #FFF5E5; box-shadow: 0 0 40px #FFF5E5; }
  100% { background-color: #E68A00; box-shadow: 0 0 30px #E68A00; }
}


@keyframes glowing {
  0% { background-color: #FF9900; box-shadow: 0 0 30px #FF9900; }
  50% { background-color: #FFF5E5; box-shadow: 0 0 40px #FFF5E5; }
  100% { background-color: #FF9900; box-shadow: 0 0 30px #FF9900; }
}

@-webkit-keyframes alternate_glowing {
    0% { background-color: #FFF5E5; -webkit-box-shadow: 0 0 40px #FFF5E5; }
    50% { background-color: #E68A00; -webkit-box-shadow: 0 0 30px #E68A00; }
    100% { background-color: #FFF5E5; -webkit-box-shadow: 0 0 40px #FFF5E5; }
}

@-moz-keyframes alternate_glowing {
      0% { background-color: #FFF5E5; -moz-box-shadow: 0 0 40px #FFF5E5; }
    50% { background-color: #E68A00; -moz-box-shadow: 0 0 30px #E68A00; }
    100% { background-color: #FFF5E5; -moz-box-shadow: 0 0 40px #FFF5E5; }
}

@-o-keyframes alternate_alternate_glowing {
    0% { background-color: #FFF5E5; box-shadow: 0 0 40px #FFF5E5; }
    50% { background-color: #E68A00; box-shadow: 0 0 30px #E68A00; }
    100% { background-color: #FFF5E5; box-shadow: 0 0 40px #FFF5E5; }
}


@keyframes alternate_glowing {
    0% { background-color: #FFF5E5; box-shadow: 0 0 40px #FFF5E5; }
    50% { background-color: #E68A00; box-shadow: 0 0 30px #E68A00; }
    100% { background-color: #FFF5E5; box-shadow: 0 0 40px #FFF5E5; }
}

.flashing_button:hover,
.alternate_flashing_button:hover {
	text-decoration:none;
}

.flashing_button {
    animation: glowing 1500ms infinite;
}

.alternate_flashing_button {
      animation: alternate_glowing 1500ms infinite;
}