@font-face{}
@-moz-keyframes pulsarImagem {/* Firefox */ 
 0% { -moz-transform: scale(1, 1);}
 50% { -moz-transform: scale(1.125, 1.125);}
 100% { -moz-transform: scale(1, 1);};
}
@-webkit-keyframes pulsarImagem {/* Safari and Chrome */
 0% { -webkit-transform: scale(1, 1);}
 50% { -webkit-transform: scale(1.125, 1.125);}
 100% { -webkit-transform: scale(1, 1);};
}
@-ms-keyframes pulsarImagem {/* ms 9 */
 0% { -ms-transform: scale(1, 1);}
 50% { -ms-transform: scale(1.125, 1.125);}
 100% { -ms-transform: scale(1, 1);};
}
@-o-keyframes pulsarImagem {/* Opera */ 
 0% { -o-transform: scale(1, 1);}
 50% { -o-transform: scale(1.125, 1.125);}
 100% { -o-transform: scale(1, 1);};
}
@keyframes pulsarImagem {
 0% { transform: scale(1, 1);}
 50% { transform: scale(1.25, 1.25);}
 100% { transform: scale(1, 1);};
}
.animacaoPulsar {
	border: none;

	-moz-animation: pulsarImagem 5s linear none 1 normal;
	-webkit-animation: pulsarImagem 5s linear none 1 normal;
	-o-animation: pulsarImagem 5s linear none 1 normal;
	-ms-animation: pulsarImagem 5s linear none 1 normal;

    animation-name: pulsarImagem;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-delay:none;
    animation-iteration-count: 1;
    animation-direction: normal; 
	animation-fill-mode: none;
	animation-play-state: running;
}
/*
.animacaoPulsar {
    animation: 5s linear 0s normal none 1 pulsarImagem;
    animation-play-state: running;
    border: none;
}
*/