/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	width:750px;
	height:500px;
	margin:-250px 0 0 -375px;
	background:#FDFCE9;
	text-align:left;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

/* VIDEO LIGHTBOX
--------------------------------------------------*/

#VideoLightbox {
	width: 750px;
	height: 500px;
	background: url(/img/bgrLightbox.jpg) no-repeat;
	border: 3px solid #9f0622;
}
#VideoLightbox h2 {
	padding: 0px 0px 0px 20px;
}
#VideoContent {
	width: 710px;
	margin: auto;
	overflow: hidden;
}
#VideoContainer {
	width: 426px;
	height: 339px;
	background: #ccc;
	float: left;
}
#VideoDescription {
	width: 270px;
	height: 337px;
	border: 1px solid #666;
	float: right;
	font-size: 85%;
	background: #fff;
	overflow: auto;
}
#VideoDescription p {
	padding: 0 5px;
	line-height: 1.4em;
}
#VideoBottom {
	width: 710px;
	margin: auto;
	overflow: hidden;
	padding-top: 30px;
}
#VideoBottom p {
	width: 426px;
	float: left;
}
#VideoBottom img {
	float: right;
	margin-right: 8px;
}
.closeWindow {
	width: 710px;
	text-align: right;
	padding: 5px 0px 0px 0px;
	margin: 0px;
}