@keyframes changeAlertBackground {
  from {
      background  : url(alert.png) center center no-repeat;
  }

  to {
      background  : url(noalert.png) center center no-repeat;
  }
}
.ApplicationAlarmPlayer 
{ /*float: right; width: 33px; height: 33px; cursor: pointer;*/ 
    position                : absolute;
    top                     : 0;
    margin-left             : -42px;
    width                   : 36px; 
    height                  : 36px; 
    -webkit-border-radius   : 3px; 
    -moz-border-radius      : 3px; 
    border-radius           : 3px;
    -webkit-box-shadow      : 3px 3px 6px rgba(0, 0, 0, 0.25); 
    -moz-box-shadow         : 3px 3px 6px rgba(0, 0, 0, 0.25); 
    box-shadow              : 3px 3px 6px rgba(0, 0, 0, 0.25);
    z-index                 : 1010;
    background-color        : rgba(255, 255, 255, 0.8);

}
.ApplicationAlarmPlayer .alert{ width:100%; height: 100%; animation-duration: 0.6s; animation-name: changeAlertBackground; animation-iteration-count: infinite; animation-direction: alternate; }