#lost {
	position: relative;
	-webkit-animation-name: example; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 3s; /* Safari 4.0 - 8.0 */
	-webkit-animation-timing-function: linear; /* Safari 4.0 - 	animation-name: example; */
	-webkit-animation-delay: 1s; /* Safari 4.0 - 8.0 */
	animation-duration: 3s;
	animation-timing-function: linear;
	animation-delay: 1s;
/*	top: 400px;
	left: 40px;
	transform: rotate(145deg);
*/
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
  0%   {transform: rotate(0deg); left:0px; top:0px;}
  100% {transform: rotate(145deg); left:40px; top:400px;}
}

/* Standard syntax */
@keyframes example {
  0%   {transform: rotate(0deg); left:0px; top:0px;}
  100% {transform: rotate(145deg); left:40px; top:400px;}
}

main {
	height: 568px;
	border-bottom: 5px solid blue;
}

#hedCrash {
	visibility: hidden;
	margin-top: 174px;
	margin-left: 45px;
}
