@font-face {
	font-family: 'GothamBlack';
	src: url('../fonts/gotham-black1-webfont.woff2') format('woff2'),
	url('../fonts/gotham-black1-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Futura';
	src: url('../fonts/FuturaBT-Book.woff2') format('woff2'),
		url('../fonts/FuturaBT-Book.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

body, html, #Stage {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #F7F7F7;
}

#Stage, #Stage *, .Header, .Header * {
	position: absolute;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-text-size-adjust: none;
}

#Stage br, #Stage span {
	position: relative;
}


.animate-pattern {
	animation: animate-pattern 6s linear infinite;
}

@keyframes animate-pattern {
	from { background-position: 0 0; }
	to { background-position: 0 -400px; }
}