<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
    Created on : Dec 1, 2017, 5:39:23 AM
    Author     : Ron
*/
#pulsecontainer {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
 
 @keyframes scaleIn {
  from {
    transform: scale(.5, .5);
    opacity: .5;
  }
  to {
    transform: scale(2.5, 2.5);
    opacity: 0;
  }
}
    .circle {
      border-radius: 50%;
      background-color: #5cb85c;
      width: 15px;
      height: 15px;
      position: absolute;
      opacity: 0;
	  animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
    }
 
    .item {
      z-index: 100;
      padding: 1px;
    }
 

.creation {font-size: 0.7em;}
.radarContainer {position:relative;}
.map_ovly {position:absolute; top:0px; left:0px; z-index:-1}
.radar_ovly {position:absolute; top:0px; left:0px;}
.legend_ovly {position:absolute; top:0px; left:0px; z-index:10}
.img-iconic {height:16px; width:16px;}
.img-iconic-md {height:24px; width:24px;}
.img-iconic-lg {height:32px; width:32px;}
.img-iconic-xl {height:50px; width:50px;}
.img-trend {height:32px; width:32px;}
#mapid { height: 600px;  }
.boldicon-1 {-webkit-text-stroke: 1px;}
.boldicon-2 {-webkit-text-stroke: 2px;}</pre></body></html>