#lightbox {
	display: none;
	position: absolute;
	top: 50px;
	left: 50px;
	padding: 20px;
	border: 20px solid orange;
	background-color: white;
	z-index:5001;
	font-family: "Century Gothic";
	font-size: 14px;
	overflow: auto;
}

#overlay {
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index: 5000;
	-moz-opacity: 0.8;
	opacity: .80;
	filter: alpha(opacity=80);
}

#close_button {
	color: blue;
	text-align: right;
	margin: -5px 0px 0px 0px;
	padding: 0px 5px 15px 5px;
}

#close_button a {
	color: blue;
	text-decoration: underline;
	font-size: 16px;
	font-weight: bold;
}

#close_button a:hover {
	text-decoration: none;
}

#skip_button {
	padding: 15px 5px 0px 5px;
	text-align: center;
}

#skip_button a {
	color: blue;
	text-decoration: underline;
	font-size: 16px;
	font-weight: bold;
}

#skip_button a:hover {
	text-decoration: none;
}