/* - - - - - - - - - - - - - - - - - - - - -

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:20%;
	z-index:9999;
	width:500px;
	height:400px;
	margin:-220px 0 0 0;
	border:2px solid #000;
	background:#ffffff;
	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:#000;
	-moz-opacity: 0.15;
	opacity:.15;
	filter: alpha(opacity=15);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

#lightbox.done img{
	width:100%;
	height:100%;
}

#lightbox.done div.article.content img
{
	width:auto;
	height:auto;
}

/**
 * Custom add ons
 */
div#lbHead
{
	background:#000;
	color:#fff;
	height:20px;
}

div#lbHead h1
{
	font-size:12px;
	font-weight:bold;
	line-height:normal;
	padding:3px 5px 0 18px;
	text-transform:uppercase;
}

div#lbHead a.lbAction
{
	display:inline;
	position:absolute;
	right:5px;
	top:2px;
	z-index:3200;
	color:#fff;
	text-decoration:underline;
}

div#lbContent div
{
	padding:8px 18px;
}
