.helicopter-top-view {
	width: 100%;
	height: 1334px;
	/* overflow-y: hidden; */
	pointer-events: none;
	position: relative;
	background: url(../scout-top-headless-bg.gif) top center repeat-x;
	top: -20;
}

.helicopter-top-view .container {
	width: 1433px;
	left: 50%;
	margin-left: -716px;
	position: absolute;
}

.helicopter-top-view .body {
	background: url(../scout-top-headless.jpg) no-repeat;
	width: 1433px;
	height: 1334px;
	overflow: hidden;
}
.helicopter-top-view .blades {
	background: url(../scout-top-blades.png) no-repeat;
	width: 1433px;
	height: 1366px;
	position: absolute;
	top: -122px;
	left: 55px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transform-origin: 784px 546px 0px;
	-moz-transform-origin: 784px 546px 0px;
	-ms-transform-origin: 784px 546px 0px;
	transform-origin: 784px 546px 0px;
	-webkit-animation: spin 80s linear infinite;
	-moz-animation: spin 80s linear infinite;
	animation: spin 80s linear infinite;
	z-index: 25;
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@-moz-keyframes spin {
	100% {
		-moz-transform: rotate(360deg);
	}
}
@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}