/* @option user-selected miscellaneous theme setting */

/* Remember to include the following in the theme index.html file, to ensure < IE9 continues to display the hidden container:
<!--[if lte IE 9]>
	<style>#pageWrapper{opacity: 1.00;}</style>
<![endif]-->
/*

/* CSS needed for the fade-in animation */
#pageWrapper {
	opacity:0;
	-webkit-animation:pagefade ease-in 1;
	-moz-animation:pagefade ease-in 1;
	-o-animation:pagefade ease-in 1;
	animation:pagefade ease-in 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	-o-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}
 
/* Effect duration */
#pageWrapper {
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
}
 
/* Fade-In Delay */
#pageWrapper {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}
 
/* Key Frames */
@-webkit-keyframes pagefade { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes pagefade { from { opacity:0; } to { opacity:1; } }
@-o-keyframes pagefade { from { opacity:0; } to { opacity:1; } }
@keyframes pagefade { from { opacity:0; } to { opacity:1; } }

@media print {
	#pageWrapper {
		opacity: 1.00;
	}
}