.dialogbox{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	text-align: left;
	background: url(/js/dialogbox/black-glass-2.png) top left repeat;
	padding: 10px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: solid 1px #333;
	font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
	font-size: 11px;
}
.dialogbox .loading{
	text-align: left;
	font-size: 24px;
	padding: 10px;
	background: #EDEFF4;
	color: #000;
	width: 435px;
}
.dialogbox .body{
	background: #fff;
	border: solid 1px #555;
	position: relative;
}
.dialogbox .content{
	padding: 8px 10px;
	margin: 0;
}
.dialogbox form{
	/*background: #E5EFFD;*/
}
.dialogbox .footer{
	border-top: solid 1px #ccc;
	background:#F2F2F2;
	padding: 7px 7px;
	text-align: left;
	font-size: 13px;
}
.dialogbox .button{
	display: -moz-inline-box; display: inline-block; *zoom: 1; *display: inline;
	background: rgb(221, 221, 221);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, rgb(221, 221, 221)),
		color-stop(1, rgb(255, 255, 255))
	);
	background-image: -moz-linear-gradient(
		center bottom,
		rgb(221, 221, 221) 0%,
		rgb(255, 255, 255) 100%
	);
	border: solid 1px rgb(153, 153, 153);
	padding: 6px 10px;
	margin: 0;
	margin-right: 14px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	color: #333;
	text-decoration: none;
	cursor: pointer;
	line-height: 1;
	text-shadow: 0px 1px 1px rgba(255,255,255,1);
	text-decoration: none;
	font-size: 13px;
}
.dialogbox .button:hover { 
	background: rgb(221, 221, 221);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, rgb(221, 221, 221)),
		color-stop(1, rgb(248, 248, 248))
	);
	background-image: -moz-linear-gradient(
		center bottom,
		rgb(221, 221, 221) 0%,
		rgb(248, 248, 248) 100%
	);
}
.dialogbox .button:active { 
	background: rgb(221, 221, 221);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, rgb(221, 221, 221)),
		color-stop(1, rgb(204, 204, 204))
	);
	background-image: -moz-linear-gradient(
		center bottom,
		rgb(221, 221, 221) 0%,
		rgb(204, 204, 204) 100%
	);
}
.dialogbox .submit{
	display: -moz-inline-box; display: inline-block; *zoom: 1; *display: inline;
	font-size: 13px;
	background: #2B3360;
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, #2B3360),
		color-stop(1, #5B6284)
	);
	background-image: -moz-linear-gradient(
		center bottom,
		#2B3360 0%,
		#5B6284 100%
	);
	border: solid 1px #2B3360;
	padding: 5px 14px;
	margin: 0;
	color: #fff;
	margin-right: 14px;
	cursor: pointer;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.dialogbox .footer .close{
	color: #333;
}
.dialogbox h1 {
	background: #4575CB; /* #6D84B4; */
	border: 1px solid #1A356E;/*#3B5998;*/
	border-bottom: none;
	color: white;
	font-size: 14px;
	line-height: 1.3em;
	font-weight: bold;
	margin: -1px;
	padding: 5px 10px;
	cursor: move;
	position: relative;
}
.dialogbox h1 .close{
	position: absolute;
	top: 6px;
	right: 7px;
}
.dialogbox label{
	font-weight: bold;
}
.dialogbox input, select, textarea{
	border: 1px solid #ccc;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
input.file{
	border: none;
	width: auto;
}
.dialogbox .content table{
	border-collapse: collapse;
}
.dialogbox .content td{
	padding: 0;
}