.presentation_bar1 {
	animation-name: presentation1;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes presentation1 {
	0% {
		opacity: 0;
		margin-left: 40px;
	}
	100% {
		opacity: 1;
		margin-left: 0px;
	}
}

.presentation_underbars {
	animation-name: presentation2;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes presentation2 {
	0% {
		opacity: 0;
		margin-left: -40px;
	}
	100% {
		opacity: 1;
		margin-left: 0px;
	}
}
