#fade{
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index:1001;
	-moz-opacity: 0.7;
	opacity:.70;
	filter: alpha(opacity=70);
}

#light{
	display: none;
	position: absolute;
	left: 45%;
	width: 640px;
	height: auto;
	margin-left: -250px;
	margin-top: 100px;                 
	background: #CCC;
	z-index:1002;
	overflow: auto;
	border: solid white;
	border-radius: 10px;
	box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.2),3px 6px 20px 0 rgba(0,0,0,0.19);
	animation-name: slidein;
    animation-fill-mode: both;
	animation-duration: 1s;
	-webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}

@keyframes slidein {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}