.newsItem{
animation:jarjune 1s infinite;
animation-iteration-count:infinite;
animation-direction:alternate;
animation-timing-function:ease-in-out;
 }
@keyframes jarjune
{
	from { transform: rotate(-3deg); }
	to { transform: rotate(3deg); }
}