/* Simple Lightbox effect */

/* This is for image display links. */
/* If jQuery used then links still need to look like old style links for consistency purposes */
.lightboxtitle {
	color: #ecfc71;
	}
.lightboxtitle:hover {
	color: red;
	}

.document_backdrop{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	background:#000;
	opacity: 0;
	filter:alpha(opacity=0); /* For IE 8 or earlier */
	z-index:999998;
}

.lb_container{
	position:absolute;
	background:#ffffff;
	z-index:999999;
	padding:10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-color: #999900;
}

