body {
	margin:0px;
}

#imagen {
	width:960px;
	height: 500px;
	position: absolute;
	background-image: url('inicio.jpg');
	margin-top: -250px;
	margin-left: -480px;
	left: 50%;
	top:50%;
	overflow: hidden;
	animation:imagen 5s;
	-webkit-animation:imagen 5s; /* Safari and Chrome */
}

@keyframes imagen
{
	0%   {opacity:0.0;}
	100% {opacity:1.0;}
}

@-webkit-keyframes imagen
{
	0%   {opacity:0.0;}
	100% {opacity:1.0;}
}

#logo{
	width: 240px;
	height: 61px;
	background-image: url('logo.png');
	position:absolute;
	overflow: hidden;
	margin-top: -30px;
	margin-left: -120px;
	left: 70%;
	top:75%;
	animation:logo 5s;
	-webkit-animation:logo 5s; /* Safari and Chrome */
}

@keyframes logo
{
	0%   {opacity:0.0; left:0px;}
	100% {opacity:1.0;left:70%;}
}

@-webkit-keyframes logo
{
	0%   {opacity:0.0; left:0px;}
	100% {opacity:1.0; left:70%;}
}

#saltar{
	width: 161px;
	height: 12px;
	background-image: url('saltar.png');
	position:absolute;
	overflow: hidden;
	margin-left: -80px;
	margin-top: -6px;
	left: 71%;
	top:85%;
}