/* - - - - - - - - - - - - - - - - - - - - -

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:500px;
	height:400px;
	margin:-220px 0 0 -250px;
	border:1px solid #fff;
	background:#FDFCE9;
	text-align:left;
	padding: 20px;
}
#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%;
}

#name {
background-color: #d0cfb3;
color: #0343a7;
margin: 0 auto;
margin-bottom: 10px;
border: 1px solid #b7b695;
width: 300px;
font: 100% 'Lucida Sans', 'Lucida Sans Unicode', Verdana, sans-serif;
font-size: 11px;
}

#email {
background-color: #d0cfb3;
color: #0343a7;
margin: 0 auto;
margin-bottom: 10px;
border: 1px solid #b7b695;
width: 300px;
font: 100% 'Lucida Sans', 'Lucida Sans Unicode', Verdana, sans-serif;
font-size: 11px;
}

#comments {
background-color: #d0cfb3;
color: #0343a7;
margin: 0 auto;
border: 1px solid #b7b695;
margin-bottom: 10px;
width: 300px;
height: 200px;
font: 100% 'Lucida Sans', 'Lucida Sans Unicode', Verdana, sans-serif;
font-size: 11px;
overflow: auto;
}


#form #send li {
list-style: none;
float: left;
}

#form #send a {
text-decoration: none;
display: block;
outline: none;
}

#form #send {
width: 66px;
height: 26px;
margin: 0 auto;
border: 0;
text-decoration: none;
cursor: pointer;
float: left;
}

#form #send:hover {
background-color: #0343a7;
width: 66px;
height: 26px;
}

#form #reset li {
list-style: none;
float: left;
}

#form #reset a {
text-decoration: none;
display: block;
outline: none;
}

#form #reset, #form button {
width: 66px;
height: 26px;
margin: 0 auto;
margin-left: 10px;
border: 0;
text-decoration: none;
cursor: pointer;
float: left;
}

#form #reset:hover, #form button.hover {
background-color: #0343a7;
width: 66px;
height: 26px;
}

