@charset "utf-8";
/* CSS Document */

/************************************
*	Beloit College - Animation CSS	*
*	By: Nick Mischler				*
*************************************/

	div.animation {
		position: absolute;
		top: 0;
		left: 0;
		display: none;
		pointer-events: none;
	}
	
	/* 	Since animations can be placed anywhere, we use
		!important to overwrite any other styles for consistency.
		Height and width are left open since they're animatable.	*/
	div.animation img {
		height: initial;
		width: initial;
		min-height: 0 !important;
		min-width: 0 !important;
		max-height: none !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		display: none;	/* Hide all initially. */
	}
	
	div.animation img.ani_img_0 {
		display: block;	/* And only show first image. */
	}
	
	div#animation_container {
		display: none;	
	}
	
	div#animation_overlay {
		top: 0px;
		left: 0px;
		position: fixed;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
	}


@media screen and (min-width: 905px) {
	
	div.animation {
		display: block;
	}

}