#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 00;
	width: 100%;
	height: 200%;
	background: #444;
	z-index: 1001;
	-moz-opacity: 0.75;
	opacity:.75;
	filter: alpha(opacity=75);
}
 
#lightbox {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 480px;
	height: 500px;
	background: #fff;
	z-index: 1002;
	margin: -250px 0 0 -250px;
	box-shadow: 0 0 8px #000;	
	text-align: left;
	padding: 20px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

#lightbox #lightbox-content {
	overflow: auto;
	height: 100%;
	display: none;
}

#lightbox #lightbox-textarea {
	width: 100%;
	height: 100%;
	display: none;
	font-family: Courier;
}

#lightbox .close {
	position: absolute;
	width: 30px;
	height: 30px;
	top: -15px;
	right: -15px;
	background: url("buttons/close.png") no-repeat;
	cursor: pointer;
}