/*---------------------------------------------------------------------

                ANIMACIÓN

---------------------------------------------------------------------*/





@keyframes anim-tractor
{
	from { background-position: 0 100% ; }
	to { background-position: 130% 100% ; }
}

@-webkit-keyframes anim-tractor /* Safari and Chrome */
{
	from { background-position: 0 100% ; }
	to { background-position: 130% 100% ; }
}



#tractor {
	bottom: 5px;
	left: 0;
	position: absolute;
	float: left;
	width: 100%;
	height: 150px;
	margin: 0px;
	padding: 0px;
	clear: none;
	background-image: url(../img/tractorcito220.png);
	animation: anim-tractor 5s;
	-webkit-animation: anim-tractor 5s; /* Safari and Chrome */
	background-repeat: no-repeat;
	background-position: 130% 100%;
	z-index:6;
 }



/*---------------------------------------------------------------------

 body {
    overflow: hidden;
}

/* Preloader */

#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#000; /* change if the mask should have another color then white */
    z-index:99; /* makes sure it stays on top */
}

#status {
    width:200px;
    height:200px;
    position:absolute;
    left:50%; /* centers the loading animation horizontally one the screen */
    top:50%; /* centers the loading animation vertically one the screen */
    background-image:url(../img/status.gif); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:-100px 0 0 -100px; /* is width and height divided by two */
}
