.popup{
	display: none;
}

.popcontainer{
	position: fixed;
	z-index: 100001;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
        /*
	opacity: 0.9;
	filter: alpha(opacity=90);
        */
	display: table;
}

.popcontainer .popinnercontainer{
	width: 350px;
}

.popcontainer .popboxcontainer{
	width: 100%;
}

.popbg {
	position: fixed;
	z-index: 100000;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background-color: #000000;
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.popbox {
	position: relative;
	z-index: 100001;
	background-color: #f0f0f0;
	border: 5px solid #d9d9d9;
	outline: 1px solid #ffffff;
}

.popbox .poptitle {
	text-align: center;
	border-bottom: 1px solid black;
	background-color: #d0d0d0;
	padding: 2px;
	font-weight: bold;
}

.popbox .poptext {
	padding: 3px;
	background-color: #ffffff;
}

.popbox .popbuttons {
	padding: 3px;
	text-align: center;
}

.popbox input {
	width: 30%;
	border: 1px solid #c0c0c0;
	background-color: #f9f9f9;
	margin: 1px;
}

.popbox input[type="text"] {
	width: 60%;
	margin: 1px;
}

.popbox input:hover{
	border: 1px solid #000000;
	cursor: pointer;
}

.popbox input[type="text"]:hover{
	border: 1px solid #000000;
	cursor: auto;
}

.popbox .poptimer {
	padding: 3px;
	text-align: center;
	color: #999999;
}

