#lightbox {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 400px;
	text-align: center;
	margin-left: -250px;
	margin-top: -200px;
	background: #fff;
	z-index: 10001;
	display: none;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	font-family: Arial;
	color: dark grey;
	border-radius: 1px;
	padding-left: 25px;
	padding-right: 25px;
}
#lightbox-shadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
	z-index: 10000;
	display: none;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
           animation: fadein 2s;
		  # pointer-events: none;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 0.75; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 0.75; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 0.75; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 0.75; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 0.75; }
}

p{ margin: 0px 0px 0px 0px;}
