body{
	background-image: url(bg2.jpg);
}
div{
	background-image: url(yoda.jpg);
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -93px 0 0 -300px;
	width: 600px;
	height: 186px;
	border-radius: 5px;
	border: 1px solid #000;
	box-shadow: 0px 0px 8px #000;
}
.fadein{
/*	-webkit-animation: start 1s ease-in-out;*/
	-moz-animation: start 1s ease-in-out;
	animation: start 1s ease-in-out;
}
p
{
	font-family: verdana;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: 120px;
	width: 140px;
	margin-left: -70px;
	height: 50px;
	font-size: 30px;
	text-align: center;
	color: #FFF;
	text-shadow: 0px 0px 5px #000;	
	user-select: none;
/*	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;*/
}



@-webkit-keyframes start
{
	from {
		opacity: 0;
		margin-top: 110px;
		
	}
	to{
		opacity: 1;
		margin-top: -93px;


	}
}


@keyframes start
{
	from {
		opacity: 0;
		margin-top: 110px;
		
	}
	to{
		opacity: 1;
		margin-top: -93px;


	}
}

@-moz-keyframes start
{
	from {
		opacity: 0;
		margin-top: 110px;
		
	}
	to{
		opacity: 1;
		margin-top: -93px;


	}
}

