

.graphic {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	left:0px; top:0px;
}

.animated {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.hidden-graphic { 
	left:160px;
}

.on-stop-point {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    color: white;
  }
  100% {
    color: #a5bd28;
  }
}