/* - - - - - - - - - - - - - - - - - - - - -

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:700px;
	height:500px;
	margin:-250px 0 0 -350px;
	background-color:#FFF;
	text-align:left;
	/*overflow: auto;*/
}
#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.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;
}
#popup_close {
	text-align:right;
	font-size: 10px;
	height: 15px;
	font-weight: bold;
	background: url(../images/general/popup_background.gif) repeat-y;
	border-bottom: 1px solid #B8BDA9;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right:5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

/*#popup_close a {
	color: #505244;
	text-decoration: none;
}

#popup_close a:hover {
	text-decoration: underline;
}*/

#popup_content_window {
	height: 454px;
	overflow: auto;
	margin-right: 5px;
}

#popup_content {
	padding: 10px 20px 20px 20px;
}

#popup_content h1 {
	font: normal 22px Georgia, "Times New Roman", Times, serif;
	letter-spacing: -1px;
	color: #2B5372;
	padding-bottom: 5px;
	border-bottom: 1px solid #DEDFC6;
	margin-bottom: 15px;
}
#popup_content h2 {
	font: bold 15px Georgia, "Times New Roman", Times, serif;
	letter-spacing: -1px;
	color: #2B5372;
	margin-bottom: 5px;
}

#popup_footer {
	height: 8px;
	background: #FFFFFF url(../images/general/popout_bottom.gif);
	overflow: hidden;
	margin-top: 5px;
}
#popup_topper {
	height: 8px;
	background: url(../images/general/popout_top.gif);
	overflow: hidden;
}