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

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

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

#lightbox{
	position: fixed;
	display:none;
	top: 50%; 
	left:50%;
	/*position: absolute;*/
	
	/*_position: absolute;*/ /*7*/
	/*top:50%;*/
	
	/*z-index:9999;*/
	z-index: 5001;
	/*width:500px;*/
	width: 440px;
	/*width: 750px;*/ /*original*/
	/*height: 283px;*/
	/*height:340px;*/
	margin:-175px 0 0 -220px;
	/*margin: -165px 0 0 -375px;*/ /*original*/
	border:1px solid #fff;
	/*background:#FDFCE9;*/
	background: gold;
	text-align:left;
	overflow: auto;
	
}
/*#lightbox[id]{
	position:fixed;
}*/

#overlay{
	display:none;
	/*position:absolute;*/
	position: fixed;
	/*_position:absolute;*/ /*7*/
	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.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%;*/
}

#lightbox p {
/*padding: 15px !important;*/
margin:0;
padding: 0;
/*padding: 15px;*/
/*_padding: 20px 15px 10px 15px;*/ /*original*/
/*color: red;*/
/*float: left;*/
/*float: right;*/
/*width: 220px;*/
height: 300px;
_height: 30px;
overflow: auto;
_background-color: #666666;
_position: relative;
_text-align: center;
}

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

/*_width: 210px;*/
padding-right: 20px;
padding-left: 20px;
padding-bottom: 5px;
/*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;*/
background-color: #FF3300;
border: 2px solid #FFCC00;
border-width: 0 0 2px 2px;
_border: 0;
_width: 100%;
_background-color:#666666;
}

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

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

body, html {

/*_overflow:auto;*/
}

