/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:block;
	position: absolute;
	padding:20px;
	border: 1px solid #ffffff;
}

#close_button{
	margin:0 0 0 350px;
	position: fixed;
	top: 15px;
	left: 50%;
	
}

#close_button_video{
	margin:0 0 0 265px;
	position: fixed;
	top: 80px;
	left: 50%;
	
}

.video {
	background-color: #d9dfe1;
	background-image: url(../graphics/background_blur.jpg);
	background-repeat: no-repeat;
	background-position: bottom center;
	top:100px;
	left:50%;
	z-index:9999;
	width:512px;
	margin:0 0 0 -270px;	
}


.interactive {
	background-color: #d9dfe1;
	background-image: url(../graphics/background_blur.jpg);
	background-repeat: no-repeat;
	background-position: bottom center;
	top:35px;
	left:50%;
	z-index:9999;
	width:700px;
	margin:0 0 0 -370px;
	max-height: 80%;
	overflow: auto;
}

#lightbox[id]{
	position:fixed;
}

#overlay{
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#f5fcff;
	-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;
}

#lightbox.done img{
	width:100%;
	height:100%;
}

#video_title_bar {
		width: 100%;
		xmargin-top: 20px;
		height: 40px;
	}
	
#video_title {
		float: left;
		//color: #ffffff;
	}
	
#video_close a{
		float: right;
		//color: #ffffff;
	}	
	



	