/* CSS Document */
#overlay {
	display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    filter:alpha(opacity=50);
    -moz-opacity:0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    z-index: 9999;
	text-align: center;
}
.popup{
	position: absolute;
	display: none;
	width: 388px;
	background-color: #000000;
	color: #FFFFFF;
	margin: 0 auto;
	z-index: 10000;
	border: solid 1px #333333;
	padding: 6px;
}
.popup span{
	font-size: 1.3em;
	margin: 4px 0 10px 4px;
	float: left;
}
.popup a{
	float: right;
	color: #FFFFFF;
	text-decoration: none;
	padding: 4px;
}
.popup .content{
	clear: both;
	float: left;
	background-color: #FFFFFF;
	color: #696969;
	padding: 10px;
	margin: 0;
}
.popup label{
	float: left;
	width: 120px;
	font-size: 12px;
	margin: 4px 0;
}
.popup input, .popup textarea{
	float: left;
	margin: 4px 0;
	width: 242px;
	border: solid 1px #cccccc;
}
.popup .button{
	float: left;
	width: 70px;
	height: 20px;
	color: #FFFFFF;
	background-color: #000000;
	border: none;
}
.popup #error{
	clear: both;
	float: left;
	color: #FF0000;
	font-size: 11px;
}
