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

Title : Lightbox CSS
Author : Kevin Hale
Modified By: Noah Winecoff 2006 , Bob Deljanin 2008
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : May 29, 2008 

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

#lightbox{
	display:none;
	position: absolute;
	top:180px;
	left:30%;
	z-index:9999;
	width:700px;
	height:990px;
	margin:-180px 0 0 -80px;
	
	background::url(/images/img_back_lbox.jpg);
	
}
#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.6;
	opacity:.60;
	filter: alpha(opacity=60);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	float:right;
	display:block;
    font-family:Arial;
	color:#bbb;
	size: 9px
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

#lightbox.done img{
	width:100%;
	height:100%;
}.linkred {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FF0000;
	text-decoration: none;
}
.lbAction  {
	padding:0 0 2px 8px;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCC;
	font-size: 9px;
}
.lbAction li a { color:#468fab;}