.pkp_structure_main p {
	text-align: justify;
}
/* Hide current issue on main page */
.current_issue {
	display: none;
}
/* Define the blinking animation */
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Apply the animation to the announcement section */
/* Replace '.your-announcement-class' with the actual class or ID you found in Step 2 */
.announcement {
    animation: blinker 1s linear infinite;
}