/* - - - - - - - - - - - - - - - - - - - - -

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: 50%;
	left: 50%;
	z-index: 9999;
	width: 662px;
	height: 441px;
	margin: -220px 0 0 -330px;
	background: url(../images/interface/lightbox_bg.gif) no-repeat;
	text-align: left;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#0e3a41;
	-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{
	display:block;
}
a.lbAction {
	position: absolute;
	right: 20px;
	top: 13px; 
}
#imageBig {
	position: absolute;
	left: 10px;
	top: 50px;
	width: 320px;
	height: 340px;
	text-align: center; 
	line-height: 340px;
}
#imageBig img {
	vertical-align: middle;
}
#textArea {
	position: absolute;
	top: 50px;
	right: 11px;
	width: 320px;
	height: 340px;
	background: url(../images/interface/lightbox_text_bg.gif) no-repeat;
}
h1 {
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 0.9em;
	position: absolute;
	top: 21px;
	left: 20px;
}
#textScroll {
	position: absolute;
	top: 43px;
	left: 20px;
	width: 264px;
	height: 276px;
	overflow: auto;
	padding: 0 20px 0 0;
}
#lightbox p {
	background: none;
	color: #fff;
	margin: 0 0 17px 0;
	line-height: 1.2;
	font-size: 12px;
}
#lightbox li, #lightbox td {
	background: none;
	color: #fff;
	line-height: 1.2;
	font-size: 12px;
}
#previous {
	position: absolute;
	bottom: 14px;
	left: 19px;
}
#next {
	position: absolute;
	bottom: 14px;
	left: 231px;
}
#attachment {
	position: absolute;
	bottom: 14px;
	left: 480px;
}