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

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;*/
	position: fixed;
	/*top:50%;*/
	top: 50%;
	left:50%;
	/*z-index:9999;*/
	z-index: 5001;
	/*width:500px;*/
	/*width: 450px;*/
	width: 750px;
	/*height: 283px;*/
	/*height:340px;*/
	/*margin:-220px 0 0 -250px;*/
	margin: -165px 0 0 -375px;
	border:1px solid #fff;
	/*background:#FDFCE9;*/
	background: gold;
	text-align:left;
	overflow: auto;
}
/*#lightbox[id]{
	position:fixed;
}*/

#overlay{
	display:none;
	/*position:absolute;*/
	position: fixed;
	
	top:0;
	
	left:0;
	width:100%;
	
	height:100%;
	z-index:5000;
	background-color:#000;
	/*background-color: #14145e;*/
	/*-moz-opacity: 0.3;
	opacity:.30;
	filter: alpha(opacity=30);*/
	-moz-opacity: 0.5;
	opacity:.50;
	filter: alpha(opacity=50);
	
}
/*#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 p {
/*padding: 15px !important;*/
margin:0;
padding: 15px;
_padding: 20px 15px 10px 15px;
/*color: red;*/
/*float: left;*/
/*float: right;*/
/*width: 220px;*/
height: 300px;
overflow: auto;
background-color: white;
_position: relative;
}

#lightbox p a {
position: fixed;
top: 0;
right: 0;
/*_left: 0;*/
/*_right: 20px;*/
/*float: right;*/
/*text-align: left;*/
/*width: 220px;*/

/*_width: 210px;*/
padding-right: 20px;
/*height: 20px;*/
background-image: url(../chrome/close.gif);
background-repeat: no-repeat;
background-position: top right;
/*border-bottom: 1px dashed #14145e;*/
_margin-bottom: 20px;
_font-size: 12px;*/
font-weight: bolder;
_font-weight: normal;
_display: block;

}

#lightbox p a:link {
color: white;
_color: #14145e;
/*display: none;*/
}

#lightbox img {
float: left;
}
#lightbox a.home {
*display: none;
}


