@charset "UTF-8";
/* the transparent overlay */
#lightbox_overlay { 
	background-color: #000000;
	position: absolute;
	z-index: 1000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity:.80;
	filter: alpha(opacity=80);
}
/* the frame/border shown around the content */
#lightbox_frame {
	position: absolute;
	z-index: 1001;
	opacity:.50;
	filter: alpha(opacity=50);
	-webkit-border-radius: 10px;
	background-color: #000000;
	padding: 10px;
	text-align: center;
}
/* the preloader DO NOT EDIT */
#lightbox_frame img {
	position: absolute;
	z-index: 1002;
}
/* content holder for main lightbox */
#lightbox_content {
	position: absolute;
	z-index: 1003;
	background-color: #EEEEEE;
	-webkit-border-radius: 10px;
	overflow: auto;
}
/* all paragraphs within content holder */
#lightbox_content p {
	padding: 10px;
}
/* the image for ImageLightbox */
#lightbox_image {
	position: absolute;
	z-index: 1003;
	-webkit-border-radius: 10px;
}
/* display holder for image title and description */
#lightbox_details {
	z-index: 1003;
	position: absolute;
}
/* title of the image */
p#lightbox_title {
	text-align: left;
	font-size: 1.1em;
	color:#FFFFFF;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 5px;
	font-weight: bold;
}
/* description of the image */
p#lightbox_description {
	text-align: left;
	color: #9BA7C9;
	padding-top: 0px;
	padding-bottom: 5px;
	padding-left: 5px;
	font-size: 0.8em;
}
/* close button/link at the bottom */
#lightbox_close {
	position: absolute;
	z-index: 1004;
	background-image: url(../js_images/lightbox_close.gif);
	background-repeat: no-repeat;
	background-position: 5px center;
	display: block;
	width: 90px;
	height: 18px;
	padding: 0px;
}
/* hides the close link text for accessibility */
#lightbox_close span {
	margin-left: -9999px;
}
/* previous link for ImageLightbox */
#lightbox_previous {
	position: absolute;
	z-index: 1005;
	opacity:.70;
	filter: alpha(opacity=70);
	background-image: url(../js_images/lightbox_prev.gif);
	background-repeat: no-repeat;
	background-position: left -100px;
	display: block;
	text-indent: -9999px;
}
/* previous link for ImageLightbox */
#lightbox_next {
	position: absolute;
	z-index: 1005;
	opacity:.70;
	filter: alpha(opacity=70);
	background-image: url(../js_images/lightbox_next.gif);
	background-repeat: no-repeat;
	background-position: right -100px;
	display: block;
	text-indent: -9999px;
}
#lightbox_previous:hover {
	background-position: left 100px;
}
#lightbox_next:hover {
	background-position: right 100px;
}
/* styling forms within lightbox */
#lightbox_content form .left_column {
	width: 50%;
	float:left;
}
#lightbox_content form .right_column {
	width: 50%;
	float:left;
}
#lightbox_content form {
	padding-top: 20px;
}
#lightbox_content form p {
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 5px;
}
#lightbox_content form.break .input_text {
	width: 250px;	
}
#lightbox_content form.break textarea {
	width: 250px;	
}
#lightbox_content form.break select {
	width: 250px;	
}
