/* LightboxSE is a small, simple lightbox alternative      */
/* Copyright Geoff Squires                           	   */
/* licensed under MIT  http://opensource.org/licenses/MIT  */


/* the background overlayer */
.lightboxBackground
{
	position:absolute;
	overflow:hidden;		
	left:0px;
	top:0px;	
	width:100%;
	height:100%;	
	background:#000000;
	filter:alpha(opacity=0);
	opacity:0;
	-moz-opacity:0;
	z-index:1000;
}


/* the actual lightbox */
.lightbox
{
	border-style:solid;
	border-width:5px;
	border-color:#ffffff;
	background:#000000;	
	z-index:1010;
}


/* lightbox contents - background to images, etc */
.lightboxContent
{
	position:absolute;	
	left:0px;
	top:0px;	
	width:100%;
	height:100%;	
	z-index:1020;
}


/* when an Iframe is used, found some alignment issues, this corrects for that */
.lightboxIFrameContent
{
	background-color: #1a1a1a;
	position:absolute;
	top:0px;
	left:0px;	
	width:100%;
	height:100%;
	border:none;
	overflow:hidden;
}


/* overlayer for images - prevent right click and save */
/* can include watermark image here as background      */
.lightboxOverlayer
{
	position:absolute;	
	left:0px;
	top:0px;
	width:100%;
	height:100%;		
	z-index:1030;
}


/* close button */
.lightboxCloseButton
{
	position:absolute;
	background:url(../images/close-btn.png);
	left:-50px;
	top:0px;	
	width:28px;
	height:28px;

	/* adjust for position */
	margin-left: -7px;
	margin-top: -11px;

	z-index:1040;
	cursor:pointer;
}


/* the caption bar */
.lightboxCaptionBar
{
	position:absolute;
	
	bottom:0px;
	left:0px;
	
	width:100%;
	height:50px;
	
	background: #ffffff;
	
	filter:alpha(opacity=80);
	opacity:.8;
	-moz-opacity:.8;
		
	z-index:1050;
}


/* the text for the caption */
.lightboxCaptionText
{
	position:absolute;
	
	left:10px;
	bottom:10px;
	
	width:75%;
	height:30px;
		
	font-family:'serif';
	font-size:24px;
	color:#ffff;

	z-index:1060;
	overflow:hidden;
}


/* previous slide button */
.lightboxPrevButton
{
	position:absolute;
	background: url('../media/lightboxSE/prevButton.png');

	width:40px;
	height:40px;
	
	left:-50px;
	top:0px;
	
	/* adjust for position */
	margin-left: -150px;
	margin-top: -45px;
	
	z-index:1070;
}


/* next slide button */
.lightboxNextButton
{
	position:absolute;
	background: url('../media/lightboxSE/nextButton.png');

	width:40px;
	height:40px;
	
	left:-50px;
	top:0px;
	
	/* adjust for position */
	margin-left: -100px;
	margin-top: -45px;
	
	z-index:1080;
}


/* play slide button */
.lightboxPlayButton
{
	position:absolute;
	background: url('../media/lightboxSE/playButton.png');

	width:40px;
	height:40px;
	
	left:-50px;
	top:0px;
	
	/* adjust for position */
	margin-left: -50px;
	margin-top: -45px;
	
	visibility: visible;
	z-index:1090;
}


/* pause slide button */
.lightboxPauseButton
{
	position:absolute;
	background: url('../media/lightboxSE/pauseButton.png');

	width:40px;
	height:40px;
	
	left:-50px;
	top:0px;
	
	/* adjust for position */
	margin-left: -50px;
	margin-top: -45px;
	
	visibility: hidden;
	z-index:1100;
}


