
    /* style sheet for image upload lightbox*/

    #lightboxNEW{
    position:absolute;
	background-color:#eee;
	padding: 10px;
	border-bottom: 2px solid #666;
	border-right: 2px solid #666;
	/* z-index:2000;*/
	}
	#lightboxDetails{
		font-size: 0.8em;
		padding-top: 0.4em;
		}	
	#lightboxCaption{ float: left; }
	#keyboardMsg{ float: right; }

	#lightboxNEW img{ border: none; } 
	#overlay img{ border: none; }



	#overlayNEW
	{
	 background-image: url(../../Images/overlay.png);
	}

	* html #overlayNEW
	{
		background-color: #000;
		back\ground-color: transparent;
		background-image: url(blank.gif);
		filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../../Images/overlay.png", sizingMethod="scale");
	}


/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
Modified By: Noah Winecoff (http://www.findmotive.com)
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:none;
	position: absolute;
	top:70%;
	left:50%;
	z-index:9999;
	width:830px;
	height:380px;
	margin:-275px 0 0 -250px;
	margin:-350px 0 0 -450px;
	border:10px solid #555555;
	background:white;
	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:#f4f4f4;
	-moz-opacity: 0.7;
	opacity:.70;
	filter: alpha(opacity=70);
}
#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%;
}
.lbAction
{
	font-family:Arial;
	font-size:9pt; 
	color: #EE8122;
}