/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */
body{
	padding:0px;
}
#lightbox{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9998;
	width:500px;
	height:400px;
	margin:-220px 0 0 -250px;
	border:1px solid #fff;
	background:#FDFCE9;
	text-align:left;
	-webkit-box-shadow: rgba(0, 0, 0, 0.699219) 0px 0px 30px;
	-moz-box-shadow: rgba(0, 0, 0, 0.699219) 0px 0px 30px;
	box-shadow: rgba(0, 0, 0, 0.699219) 0px 0px 30px;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:900%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
	-khtml-opacity: 0.8;
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	height:100%;
	display:block;
}
#lightbox.loading #lbContent{
	height:100%;
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

.lb {
	background:#eee;
	-webkit-box-shadow: rgba(0, 0, 0, 0.699219) 0px 0px 30px;
	-moz-box-shadow: rgba(0, 0, 0, 0.699219) 0px 0px 30px;
	box-shadow: rgba(0, 0, 0, 0.699219) 0px 0px 30px;
	height:100%;
}
#lb_container{
	padding:10px 0 0 0;
}
.lb_content_wrap {
	background-color: #eeeeee;
	height:100%;
	width:100%;
	}

.lb_h1 {
    color: #FFFFFF;
    font-size: 26px;
    margin-left: 10px;
    padding: 8px 3px 0;
    text-align: left;
	font-family: Century Gothic, sans-serif;
}

.lb_header {
    background-color: transparent;
    background-image: url("../images/topheaderbg.png");
    background-position: 0 0;
    background-repeat: repeat-x;
    height: 46px;
    width: 100%;
    border-bottom: 1px #111111 solid;
}

.lb_headerR {
	float:right;
	height:46px;
	width:5px;
	/* background:url('/images/lb_headerR.png') no-repeat; */
	}

.lb_headerL {
	float:left;
	height:46px;
	width:5px;
	/* background:url('/images/lb_headerL.png') no-repeat; */
	}
	
.lb_footer {	
	margin-bottom:20px;
	height:4px;
	font-size:0px; /* for IE */
	background-color: #eeeeee;
	/* background:url('/images/lb_footerBkg.png') repeat-x; */
	}

.lb_footerR {
	float:right;
	width:5px;
	height:4px;
	background-color: #eeeeee;
	/* background:url('/images/lb_footerR.png') no-repeat; */
	}
	
.lb_footerL {
	float:left;
	width:5px;
	height:4px;
	background-color: #eeeeee;
	/* background:url('/images/lb_footerL.png') no-repeat; */
	}
	
.lb_Cancel {
	float:right;
	}
	
.lb_btnClose {
	margin-left: 15px;
	margin-top:12px;
	width:68px;
	height:22px;
	background:url('../images/lb_btnClose.png');
	background-repeat: no-repeat;
	cursor:pointer;
	}