/* - - - - - - - - - - - - - - - - - - - - -

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:425px;
	height:323px;
	margin:-330px 0 0 -250px;
	border:none;
	background-color:#FDFCE9;
	background:url(/custom/popup_bg.jpg) top left no-repeat;
	text-align:left;
}
#main_link {
	width:425px;
	height:280px;
	position:absolute;
	top:0px;
	left:0px;
	display:block;
	cursor:pointer;
	
}
#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%;
}


#skip {
width:131px;
height:28px;
background:url(/custom/close_btn.jpg) no-repeat;
border:none;
cursor:pointer;
border:0px;
position:absolute;
right:13px;
bottom:13px;
outline:none;
}
#btn_link {
width:263px;
height:28px;
background:url(/custom/btn_link.jpg) no-repeat;
border:none;
cursor:pointer;
border:0px;
position:absolute;
right:149px;
bottom:13px;
outline:none;
}