#container {
	width: 50%;
	margin: 0 auto;
	text-align: left;
}

.leightbox {
	color: #000;
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	padding: 1.5em;
	background-color: #fff;
	text-align: left;
	vertical-align: middle;
	z-index: 1001;
	font-size: 12pt;
	font-family: 'Open Sans Condensed','Arial Narrow',sans-serif;
	overflow-y: scroll;
	-moz-box-shadow: 0 0 7px rgba(0,0,0,0.8);
	-webkit-box-shadow: 0 0 7px rgba(0,0,0,0.8);
	box-shadow: 0 0 7px rgba(0,0,0,0.8);
	border: 1px solid darkblue;
	border-radius: 1.5em;
	max-height: 100%;
}

	.leightbox iframe {
		width: 100%;
		height: 100%;
		border: none;
	}

	.leightbox input[type=text], .leightbox textarea {
		width: 100%;
	}

	.leightbox td {
		padding: 2px 5px;
	}

#overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: #333;
	-moz-opacity: 0.67;
	opacity: .67;
	filter: alpha(opacity=67);
}

.leightbox[id] {
	/* IE6 and below Can't See This */
	position: fixed;
}

.leightbox .closeButton {
	position: absolute;
	right: 8px;
	top: 8px;
	height: 16px;
	margin: 0px;
	transition-duration: .2s;
	cursor: pointer;
	z-index: 10;
}

	.leightbox .closeButton:hover {
		height: 32px;
		margin: -4px;
	}


#overlay[id] {
	/* IE6 and below Can't See This */
	position: fixed;
}

@media screen {
	html {
		margin: 0;
		padding: 0;
		height: 100%; /* needed for container min-height */
		width: 100%;
	}

	body {
		position: relative; /*		overflow: auto;*/
	}
}

@media(max-width: 768px) {
	.leightbox {
		margin-top: 0 !important;
		margin-left: 0 !important;
		position: fixed;
		top: 0 !important;
		left: 0 !important;
		box-sizing: border-box;
		width: 100% !important;
		display: normal;
		overflow-y: scroll !important;
		height: 100% !important;
		border: none !important;
		border-radius: 0 !important;
	}

		.leightbox::after {
			content: "";
			height: 3em;
			display: block;
		}

		.leightbox .closeButton {
			height: 32px;
			margin: -4px;
		}
}
