/* CSS Document */

#plane {width:800px; height:402px; position:absolute; top:210px; background-image:url(../images/airplane.png);}

#prop_left {width:45px; height:45px; position:absolute; top:341px; left:154px; background-image:url(../images/prop.png);
animation-name: prop_rotate;
	animation-duration:1.2s;
	animation-iteration-count:infinite;
	animation-direction:normal;
	animation-timing-function:linear;}

#prop_right {width:45px; height:45px; position:absolute; top:341px; right:154px; background-image:url(../images/prop.png);
animation-name: prop_rotate;
	animation-duration:1.2s;
	animation-iteration-count:infinite;
	animation-direction:normal;
	animation-timing-function:linear;}

@keyframes prop_rotate {
	from {-ms-transform: rotate(0deg); /* IE 9 */
    	  -webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
    	  transform: rotate(0deg);}
	to {-ms-transform: rotate(360deg); /* IE 9 */
    	-webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
    	transform: rotate(360deg);}
}



