/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

* { outline: 0; }

#lightbox {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9000;
	width: 420px;
	height: 345px;
	margin: -172px 0 0 -210px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	color: #2d2d2d;
}

#lightbox[id] {
	position: fixed;
}

#overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 120%;
	height: 100%;
	z-index: 5000;
	background-color: #000;
	-moz-opacity: 0.65;
	opacity: .65;
}

#overlay[id] {
	position: fixed;
}

#lightbox.done #lbLoadMessage {
	display: none;
}

#lightbox.done #lbContent {
	display: block;
}

#lightbox.loading #lbContent {
	display: none;
}

#lightbox.loading #lbLoadMessage {
	display: block;
	text-align: center;
	margin-top: 170px;
}

#lightbox .window {
  background: url(/images/login_bg.jpg) left top no-repeat;
  color: #2d2d2d;
  height: 345px;
  position: relative;
  width: 420px;
}

#lightbox .email-to-window {
  background-image: url(/images/email_to_bg.jpg);
  height: 400px;
}

#lightbox #close_btn {
  position: absolute;
  top: 18px;
  right: 18px;
}

#lightbox .forms {
  bottom: 2px;
  position: absolute;
  left: 25px;
  width: 212px;
}

#lightbox .messages {
  color: #cb0909;
  font-weight: bold;
  margin-bottom: 14px;
}

#lightbox input {
  z-index: 9999;
}

#lightbox .form-buttons .form-submit-login {
  background: url(/images/login_btn.jpg) left top no-repeat;
  border: none;
  display: block;
  height: 40px;
  text-indent: -999px;
  width: 94px;
  
}
