/* CSS popup */
.overlay{
	display:none;
	position:fixed;
	width:100%;
	height:100%;
	background:#000;
	opacity:0.3;
	filter:alpha(opacity=30));
	z-index:10001;
	left:0;
	top:0;
}
.popup{
	display:none;
	position:absolute;
	left:50%;
	top:150px;
	z-index:99999;
}
.loading{
	position:fixed;
	width:100%;
	height:100%;
	z-index:10003;
	background:rgba(0,0,0,0.3);
	top:0;
	left:0;
}
.loading-inner{
	width:240px;
	height:140px;
	background:#fff;
	position:fixed;
	top:50%;
	left:50%;
	text-align:center;
	margin-left:-120px;
	margin-top:-70px;
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	border-radius:12px;
}
.loading-img{
	background:url(../images/loading50.gif) no-repeat;
	width:50px;
	height:50px;
	display:inline-block;
	margin:25px auto 10px;
}
.loading p{
	display:block;
	padding:10px 0 0;
	font-size:16px;
	color:#333;
}
.popup-title{
	height:32px;
	color:#fff;
	font-size:13px;
	font-weight:bold;
	cursor:move;
}
.ptitle-left{
	float:right;
	height:32px;
	width:33px;
	background:url(../images/ptitle-left.png) no-repeat;
}
.ptitle-right{
	float:right;
	padding:7px 10px 0 20px;
    background: #007BC7;
	height:25px;
	text-align:center;
}
.popup-close{
	background:url(../images/popup-close.png) no-repeat center center #007BC7;
	width:32px;
	height:32px;
	float:right;
}
.popup-close:hover{
    cursor: pointer;
}
.popup-label{
	color:#999;
	font-weight:bold;
	font-size:18px;
	padding:10px 0 20px 10px;
}
.popup-content{
	padding:20px;
	overflow:auto;
	background:#fff;
	-moz-box-shadow:0 0 5px rgba(0,0,0,0.5);
	-webkit-box-shadow:0 0 5px rgba(0,0,0,0.5);
	box-shadow:0 0 5px rgba(0,0,0,0.5);
}
.popup-bar{
	padding:7px 0 0;
	margin:0 0 -5px;
	border-top:1px solid #ccc;
	text-align:right;
}
.popup-bar a{
	font-size:11px;
	color:#333;
	padding:0 0 0 7px;
	font-weight:normal;
}
.table-popup{
	height:250px;
	overflow:auto;
}