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

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:5%;
	left:50%;
	z-index:9999;
	width:700px;
	margin: 0 0 0 -350px;
	border:4px solid #6a0001;
	background:#f1f1f1;
	text-align:left;
	padding-top: 20px;
	padding-left: 14px;
	padding-right: 14px;
	padding-bottom: 10px;
	overflow: auto;
}
#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{
	display:block;
}

#lightbox.done img{
	width:100%;
	height:100%;
}

#lightbox {
	color: #3b3b3b;
	font-family: Verdana;
	font-size: 14px;
	text-align: justify;
	line-height: 150%;
}

#lightbox h1 {
	color: #3a0001;
	text-align: left;
	font-family: Arial; /* Optima; */
	font-weight: normal;
	margin-top: 0px;
	font-size: 40px;
	padding-bottom: 14px;
	border-bottom: #8a0001 2px solid;
	margin-bottom: 4px;
}

#lightbox h2 {
	color: #3a0001;
	text-align: left;
	font-family: Arial;
	font-weight: normal;
	margin-top: 0px;
	padding-top: 10px;
	font-size: 24px;
	padding-bottom: 0px;
}

#lightbox p {
}

#lightbox a {
	color: blue;
	text-decoration: none;
}

