    /* B-24 Eye Candy by Bob */

body{overflow-x:hidden}

    .aircraft {
       position: absolute;
       /* Firefox */
       -moz-animation: aircraftDrift linear infinite;
       /* WebKit - Chrome and Safari */
       -webkit-animation: aircraftDrift linear infinite;
       /* Opera */
       -o-animation: aircraftDrift linear infinite;
       /* general syntax */
       animation: aircraftDrift linear infinite;
    }
    
    .sml {
       /*width 100px*/
       top: 10px;
       left: 100px;
       /* Firefox */
       -moz-animation-duration: 35s;
       /* WebKit - Chrome and Safari */
       -webkit-animation-duration: 35s;
       /* Opera */
       -o-animation-duration: 35s;
       /* general syntax */
       animation-duration: 35s;
    }

    .med {
       /*width 150px*/
       top: 98px;
       left: 50px;
       /* Firefox */
       -moz-animation-duration: 30s;
       /* WebKit - Chrome and Safari */
       -webkit-animation-duration: 30s;
       /* Opera */
       -o-animation-duration: 30s;
       /* general syntax */
       animation-duration: 30s;
    }

    .med2 {
       /*width 170px*/
       top: 30px;
       left: 30px;
       /* Firefox */
       -moz-animation-duration: 25s;
       /* WebKit - Chrome and Safari 2*/
       -webkit-animation-duration: 25;
       /* Opera */
       -o-animation-duration: 25s;
       /* general syntax */
       animation-duration: 25s;
    }

 /* Changed speed from 20 to 40 */

    .lrg {
       /*width 200px*/
       top: 62px;
       left: 0px;
       /* Firefox */
       -moz-animation-duration: 20s;
       /* WebKit - Chrome and Safari */
       -webkit-animation-duration: 20s;
       /* Opera */
       -o-animation-duration: 20s;
       /* general syntax */
       animation-duration: 20s;
    }
    
    /* Keyframe animations */
   
    /* Firefox */
    @-moz-keyframes aircraftDrift {
	0% {margin-left: 100%;}
	100% {margin-left: -200px;}
    }
    /* WebKit - Chrome and Safari */
    @-webkit-keyframes aircraftDrift {
	0% {margin-left: 100%;}
	100% {margin-left: -200px;}
    } 
    /* Opera */
    @-o-keyframes aircraftDrift {
	0% {margin-left: 100%;}
	100% {margin-left: -200px;}
    }
    /* general syntax */
    @keyframes aircraftDrift {
	0% {margin-left: 100%;}
	100% {margin-left: -190px;}
    }