@charset "utf-8";

/* These are the replaceableContent divs. */
.replaceableContent{
	display: none;
	animation: fadeInReplacement 0.2s;
}
@keyframes fadeInReplacement{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

/* These are what gets clicked to trigger the content replacement. */
.replaceContentButton{
	font-weight: bold;
	color: #56a1cd;
	cursor: pointer;
	text-decoration: none; 
}