/* - - - - - - - - - - - - - - - - - - - - -

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:360px;
	left:487px;
	z-index:9999;
	width:500px;
	height:350px;
	margin:-220px 0 0 -250px;
	border:1px solid #fff;
	background:#F8FFFF;
	text-align:left;
	font-family: arial, helvetica, sans;
	font-size: 9pt;
	padding: 10px;
}
#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.2;
	opacity:.20;
	filter: alpha(opacity=20);
	font-family: arial, helvetica, sans;
	font-size: 9pt;
}
#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{
	padding-left: 3px;
	padding-bottom: 3px;
/*
	width:100%;
	height:100%;
*/
}

.titlediv {
	background-color: #800;
	color: #fff;
	font-size: 11pt;
	padding: 2px;
}

a.lbAction, a.lbAction:visited {
	text-align: center;
	padding: 2px;
	border-top: 1px solid #888;
	border-right: 1px solid #888;
	border-bottom: 1px solid #333;
	border-left: 1px solid #333;
	text-decoration: none;
	font-weight: bold;
	color: #333;
}

.closebut {
	position: absolute;
	top: 300px;
	left: 235px;
}
