@charset "utf-8";
/* CSS Document */



/*----------------------------------------------------------------------*/


#transitionbox {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #573100;
	z-index: 20;
	/*animation-name: opentransition;
	animation-duration: 4s;
	animation-fill-mode: forwards;*/
}

@keyframes opentransition {
	from {opacity: 1}
	to {opacity: 0; display: none}
}

@keyframes closetransition {
	from {opacity: 0}
	to {opacity: 1}
}