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

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:600px;
	margin:-300px 0 0 -400px;
	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;
	width: 800px;
	height: 600px;
	background: url(/shared/images/indicator_medium.gif) no-repeat 50% 50%;
}

.lb-nav {
	display: block;
	position: absolute;
	top: 7px;
	width: 22px;
	height: 22px;
	text-indent: -9999px; 
}

a.lb-nav {
	filter:alpha(opacity=30);
	-moz-opacity:.30;
	opacity:.30;
}

a.lb-nav:hover {
	filter:alpha(opacity=100);
	-moz-opacity:1.0;
	opacity:1.0;
}

a.lb-nav-inactive, a.lb-nav-inactive:hover {
	filter:alpha(opacity=15);
	-moz-opacity:.15;
	opacity:.15;
}

#closer {
	z-index: 9999;
	right: 7px;
	background: url(/shared/images/icons/close-lightbox.gif) no-repeat 50% 50%;
}

#lb-nav-rgt {
	z-index: 9997;
	right: 34px;
	background: url(/shared/images/icons/right.gif) no-repeat 50% 50%;
}
#lb-nav-lft {
	z-index: 9998;
	right: 62px;
	background: url(/shared/images/icons/left.gif) no-repeat 50% 50%;
}
