@charset "UTF-8";

#lb_overlay {
	background-color: #666666;
	position: absolute;
	z-index: 999;
	top: 0px;
	left: 0px;
	opacity:.75;
	filter: alpha(opacity=75);
}

#lb_container {
	position: fixed;
	background-color: #FFF;
	z-index: 1001;
	-webkit-box-shadow: 0px 0px 25px 0px #222222;
	box-shadow: 0px 0px 25px 0px #222222;
	text-align: left;
}
#lb_content {
	margin: 10px;
}
#lb_frame {
	width: 840px; /* This sets the width for page lightboxes */
	height: 500px; /* This sets the height for page lightboxes */
}
#lb_label {
	position: absolute;
	z-index: 1002;
	left: 10px;
	bottom: 10px;
	background-color: #000;
	opacity:.80;
	filter: alpha(opacity=80);
	color: #FFF;
}
#lb_label p {
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
}
#lb_label p.first {
	margin: 0px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
}
#lb_label p.last {
	margin: 0px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	color: #CCC;
}
#lb_close {
	background: url(../img/lb-close.png) no-repeat left top;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	z-index: 1003;
	top: -15px;
	right: -15px;
	font-size: 0em;
	text-indent: -9999px;
}
#lb_next {
	position: absolute;
	z-index: 1002;
	display: block;
	/*height: 200px;
	width: 200px;*/
	top: 0px;
	right: 0px;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	background-image: url(../img/lb-blank.gif);
}
#lb_next span {
	background-image: url(../img/lb-right.png);
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	display: none;
	width: 60px;
	height: 100%;
	top: 0px;
	right: 0px;
}
#lb_next:hover span {
	display: block;
}
#lb_prev {
	position: absolute;
	z-index: 102;
	display: block;
	/*height: 200px;
	width: 200px;*/
	top: 0px;
	left: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
	background-image: url(../img/lb-blank.gif);
}
#lb_prev span {
	background-image: url(../img/lb-left.png);
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	display: none;
	width: 60px;
	height: 100%;
	top: 0px;
	left: 0px;
}
#lb_prev:hover span {
	display: block;
}