@charset "euc-kr";

.fadeout_ani {
	animation: fadeout 5.5s;
	-moz-animation: fadeout 5.5s;
	-webkit-animation: fadeout 5.5s; /* Firefox */
	-o-animation: fadeout 5.5s; /* Safari and Chrome */
	animation-fill-mode: forwards; /* Opera */
}

.fadeout_ani_m {
	animation: fadeout 9s;
	-moz-animation: fadeout 9s;
	-webkit-animation: fadeout 9s; /* Firefox */
	-o-animation: fadeout 9s; /* Safari and Chrome */
	animation-fill-mode: forwards; /* Opera */
}

@keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* Firefox */
@-moz-keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* Safari and Chrome */
@-webkit-keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* Opera */
@-o-keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}