@keyframes highlight
{
	0%
	{
		background-color: #ffff00;
	}
	25%
	{
		background-color: #ffff00;
	}
	100%
	{
		
	}
}

.highlight
{
	animation-name: highlight;
	animation-duration: 4s;
	animation-iteration-count: 1;
}