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

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:800px;
	height:475px;
	margin:-250px 0 0 -400px;
	padding:20px;
	border:5px solid #0063b8;
	background:#fff;
	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.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%;
}*/

body { background:#0063b8; font-family:Tahoma; font-size:100%; line-height:1em; color:#484848;}

/*txt, links*/
h1 { background:url(images/nothing.jpg) no-repeat left top; text-indent:-10000px;}
h2 { color:#14316b; font-size:1em; margin-bottom:10px;}
h3 { color:#719c00; font-size:0.81em; margin-bottom:7px;}
h4 {color:#719c00; font-size:2em; margin-bottom:28px;}

p { margin:0 0 15px 0; line-height:15px; font: normal 14px Tahoma; }

img.lightheader {margin-bottom:20px;}

.link1 { color:#af2015;}
.link3 { color:#719c00;}

.line_hor { background:url(images/line1.gif) left bottom repeat-x;}
