/* Post Calendar Widget */
table.wp-calendar-table {
	width: 100%;
	margin-bottom: 1.125rem;
}

table.wp-calendar-table td {
	padding: .5rem;
	text-align: center;
}

nav.wp-calendar-nav {
	margin-bottom: 1.125rem;
}

/* Emergency Message */
section.scroller {
	margin-bottom: 2.25rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.scrollmsg {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

p.scrollmsg {
	display: table-cell;
	font-size: 2em;
	font-weight: 700;
	margin: 0 .5rem;
	padding: 0 1rem;
	color: white;
	background-color: #A60F2D;
	border-right: .5rem solid #262626;
	animation: scrollmsg 60s linear infinite;
}

p.scrollmsg a, p.scrollmsg a:hover {
	color: #FFFFFF;
	text-decoration-color: #FFFFFF;
}

@keyframes scrollmsg {
	0% {
		transform: translate(0,0);
	}
	
	100% {
		transform: translate(-100%,0);
	}
}

/* Emergency Message  */