/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox {
	display: none;
	position: absolute;
	top: 92px;
	left: 50%; /*28.75%;*/
	z-index: 9999;
	width: 709px;
	height: 426px; /*385px;*/
	margin: 0 0 0 -356px;
	border: 1px solid #fff;
	background: #ffffff;
	text-align: left;
	font-family: "Trebuchet MS", Tahoma, Helvetica, Arial, sans-serif;
	font-size: 11px;
	line-height: 14px;
	color: #081629;
}

#lightbox[id] {
	position: fixed;
}

#overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5000;
	background-color: #000;
	-moz-opacity: 0.8;
	opacity: .80;
	filter: alpha(opacity=80);
}

#overlay[id] {
	position: fixed;
}

#lightbox.done #lbLoadMessage {
	display: none;
}

#lightbox.done #lbContent {
	display: block;
}

#lightbox.loading #lbContent {
	display: none;
}

#lightbox.loading #lbLoadMessage {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}

/*#lightbox.done img {
	width: 100%;
	height: 100%;
}*/

#closeBtn {
	position: relative;
	margin: 0;
	padding: 6px 6px 0 0;
	text-align: right;
}

#closeBtn img {
	border: none;
}

#printBtn {
	position: relative;
	margin: 0;
	padding: 6px 4px 6px 0;
	text-align: right;
	background: #ffffff;
}

#printBtn img {
	border: none;
}

h1 {font-size: 22px; color: #071123; letter-spacing: -1px; font-weight: normal; margin: 0; padding: 3px 0 16px 0;}

#text {
	margin: 0;
	padding: 0 18px 0 18px;
	display: block;
	height: 351px;
	overflow: auto;
	text-align: left;
	font-family: "Trebuchet MS", Tahoma, Helvetica, Arial, sans-serif;
	font-size: 11px;
	line-height: 14px;
	color: #081629;
}