/*#ship {
	position: absolute;
	background-repeat: no-repeat;
	background-image: url(images/ship.png);
	background-position: center center;
	height: 24px;
	width: 16px;
	z-index: 1000;
	display: block;
	-webkit-animation-iteration-count: once;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-name: shipVoyage;
	-webkit-animation-duration: 9.5s;
	-webkit-animation-delay:2.5s;
}

@-webkit-keyframes shipVoyage {
	0% { -webkit-transform: rotate(90deg); left: -250%; top: 30%; }
	25% { -webkit-transform: rotate(90deg); left: 101%; top: 30%; }
	60% { -webkit-transform: rotate(-90deg); left: 101%; top: 60%; }
	75% { -webkit-transform: rotate(-90deg); left: 50%; top: 60%; }	
	78% { -webkit-transform: rotate(0deg); left: 50%; top: 60%; }
	80% { -webkit-transform: rotate(0deg); left: 50%; top: 60%; }
	90% { -webkit-transform: rotate(0deg); left: 50%; top: 60%; }
	100% { -webkit-transform: rotate(0deg); left: 50%; top: -25%; }
}*/

#stars {
	z-index:1;
	width: 100%;
	height: 100%;
	display: block;
	position: fixed;
	left: 0px;
	top: 0px;
	opacity: 0.5;
	background: transparent url(../images/Stars2.png) repeat;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-webkit-animation-name: starsFast;
	-webkit-animation-duration: 15s;
}

@-webkit-keyframes starsFast {
	0% { background-position-x: 1000px; }
	100% { background-position-x: 0px; }
}

body {
	background-image: url(../images/Stars.png);
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-webkit-animation-name: starsSlow;
	-webkit-animation-duration: 60s;
}

@-webkit-keyframes starsSlow {
	0% { background-position-x: 1000px; }
	100% { background-position-x: 0px; }
}
