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

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:400px;
	height:400px;
	border:10px solid #00DEFF;
	text-align:left;
	background-color: #FFFFFF;
	background-image: url(../../../images/developed_by_agee_design_sm.jpg);
	background-repeat: no-repeat;
	background-position: 15px 15px;
	margin-top: -220px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -250px;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#FFDE02;
	-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 .popup {
	height: 375px;
	overflow: auto;
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	font-size: 12px;
	color: #333333;
	line-height: 20px;
}
#lightbox .popup .padding {
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 85px;
}
#lightbox .popup_top {
	height: 25px;
}
#lightbox .popup_bottom {
	font-size: 11px;
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #eaeaea;
}
#lightbox .popup_bottom a {
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	display: block;
	padding-top: 5px;
	padding-bottom: 8px;
}
#lightbox .popup_bottom a:hover {
	background-color: #A7F5FF;
}
#lightbox .popup h3 {
	margin: 0px;
	padding: 0px;
	font-size: 18px;
	color: #FF6600;
	font-weight: bold;
}
#lightbox .popup p {
}
#lightbox .popup p a {
	color: #FF6600;
	text-decoration: none;
}