

body,table,tr,td
{
	font-family: arial, sans-serif;
	font-size: 14px;
	color: #444444;
}
h1,h2,h3,h4 { font-family: arial, sans-serif; }

.nextpage {
 font-size: 20px; color: red; 
 animation: blinker 0.7s cubic-bezier(.5, 0, 1, 1) infinite alternate;  
}

@keyframes blinker {  
  from { opacity: 1; }
  to { opacity: 0; }
}

