/* - - - - - - - - - - - - - - - - - - - - -

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: 600px;
	height: 500px;
	margin: -220px 0 0 -300px;
	text-align: left;
	overflow: auto;
	font-size: 1.2em;
	line-height: 1.4em;
	color: #636363;
}
#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;
}

#lightbox.done img
{
	width: 100%;
	height: 100%;
}
#lightbox fieldset,
#lightbox p,
#lightbox h1
{
	width: 560px;
}

#lightbox fieldset label
{
	display: block;
	margin-bottom: 5px;
	width: 215px;
}

#lightbox .required
{
	color: #ff3300;
}

#lbLoadMessage
{
	z-index: 1;
	opacity: 1;
	filter: alpha(opacity=100);
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	width: 400px;
	margin: -220px 0 0 -200px;
	text-align: left;
	overflow: hidden;
	font-size: 1.2em;
	line-height: 1.4em;
}

#lbLoadMessage p
{
	overflow: hidden;
	margin: 0 auto;
	font-size: 1.4em;
	font-weight: bold;
	padding: 20px 20px 20px 40px;
	background-image: url(/images/ajax-loader.gif);
	background-position: 10px center;
	background-repeat: no-repeat;
}

#nav #eafMessageContainer
{
	position: absolute;
	top: 25px;
	padding: 8px;
	border: solid 1px #eee;
	font-size: 1.2em;
	width: 400px;
	color: #333;
}

#nav #eafMessageContainer span
{
	display: block;
}

#nav #eafclose
{
	border:1px solid #EEEEEE;
	display:block;
	float:right;
	padding:4px;
	position:absolute;
	right:2px;
	top:2px;
	width:35px;
	cursor: pointer;
}