
body:before {
	content: "";
	position: fixed;	left: 0;		top: -10px;
	width: 100%;		height: 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,.8);
	z-index: 100;
}


#info {
	background: rgba(255,255,255,.60);
	box-shadow: 0 0 10px #222;
	position: fixed;	top: 0;		right: 0;
	width: 100%;
	font-size: 18px;
	font-weight: normal;
	margin: 0 auto;
	z-index: 2;
	-moz-animation: headerPanel 1.2s linear;
	animation: headerPanel 1.2s linear;
}

@-moz-keyframes headerPanel {
	0% {
		top: -80px;
		opacity: 1.0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 0;
		opacity: 0.6;
	}
}
