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

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

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

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

/* Custom Styles */

.lbWindow {
  width: 750px;
  height: 550px;
  border: 2px solid #aaa;
  background-color: white;
  position: absolute;
  left: 50%;
  margin: -275px 0 0 -377px;
}
.lightbox_titlebar {
  display: none;
}
#lightbox .lightbox_titlebar {
  display: block;
}
.lightbox_titlebar {
  background: #ddd url(../images/lightbox/titlebar.png);
  overflow: hidden;
  height: 30px;
  font-size: 12px;
  border-bottom: 2px solid #aaa;
}
.lightbox_titlebar h1 {
  margin: 0;
  font-size: 1em;
  float: left;  
  padding: 7px 15px;
}
.lightbox_titlebar a {
  display: block;
  height: 100%;
  background: #999 url(../images/lightbox/titlebar_buttons.png);
  float: right;
  padding: 7px 15px;
  cursor: hand;
  text-align: center;
  color: black;
  text-decoration: none;
  font-weight: bold;
}
.lightbox_titlebar a span {
  font-weight: normal;
  padding: 0 15px 0 0;
}
.lightbox_titlebar a:hover {
  background-image: url(../images/lightbox/titlebar_buttons_hover.png);
  color: white;
}
.lightbox_body {
  overflow: auto;
  height: 518px;
  padding: 0 20px;
  text-align: left;
}

#lbImage {
  height: auto;
}
#lbImage img {
  display: block;
  width: 750px;
}
#lbVideo .lightbox_body, #lbImage .lightbox_body {
  overflow: hidden;
  height: auto;
  padding: 0;
}
#lbVideo #player {
  margin: 0;
}
#lbVideo {
  width: 400px;
  height: auto;
  margin: -175px 0 0 -202px;
  background-color: black;
}

/* Original Styles */

#lightbox{
	display:none;
	position: absolute;
	z-index:9999;
	left: 0;
	width:100%;
	text-align: center;
  top: 50%;	
}
#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;
}

