@charset "utf-8";

/* This contains the hidden content. */
.hideRevealContainer{
	display: none;
	position: relative;
	animation: revealDown 0.4s;
}
@keyframes revealDown{
	from{
		top: -25px;
		opacity: 0;
	}
	to{
		top: 0;
		opacity: 1;
	}
}