/* - - - - - - - - - - - - - - - - - - - - -

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:800px;
	height:450px;
	margin: -225px 0 0 -400px;
	border:2px solid black;
	background-color: #e7eff7;
	text-align:left;
	padding: 10px;
}
#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%;
}

#lightbox img.iconarr {
	float: right;
	width: auto;
	height: auto;
}

#lightbox ul {
	height: 400px;
	display: block;
}

#lightbox ul li {
	background: url(../images/bullet.jpg) no-repeat 0 4px;
	color: #0055a5;
	font-size: 100%;
	line-height: 1.3em;
	padding: 0px 0px 8px 12px;
}


#lightbox .col2 {margin-left: 428px;}
 
#lightbox .coltopper {margin-top: -165px;} 


#lightbox h3 {
	color: #0055a5;
	font-size: 1.1em;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 5px;
	padding: 3px;
	border-bottom: 1px dashed #0055A5;
	background-color: #F5F9FC;
}

#lightbox h4 {
	color: #0055a5;
	font-size: 1.1em;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 5px;
}

#lightbox a {
	text-decoration: none;
}


#lightbox a:link {
	color: #7cb955;
	border: 0;
}

#lightbox a:visited {
	color: #7cb955;
	border: 0;
}

#lightbox a:hover {
	color: black;
	border: 0;
}

#lightbox a:active {
	color: #000000;
	border: 0;
}
