#newsletter_status {
    padding: 15px;
	background-color: #FFFFFF;
	color: #000000;
    margin-top: 15px;

	-webkit-animation: newsletter_animation 1s 3;  /* Safari 4+ */
	-moz-animation: newsletter_animation 1s 3;  /* Fx 5+ */
	-o-animation: newsletter_animation 1s 3;  /* Opera 12+ */
	animation: newsletter_animation 1s 3;  /* IE 10+, Fx 29+ */
}

@-webkit-keyframes newsletter_animation {
	0%, 49% {
		background-color: #FFFFFF;
		color: #000000;
	}
	50%, 100% {
		background-color: #9f4c58;
		color: #FFFFFF;
	}
}

#newsletter_registration_form label {
	font-weight: normal;
}