#overlay {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 998;
	
	background-color: rgba(0, 0, 0, 0.5);
}

.popup {
	background-color: #ffffff;
	border: 1px solid #0085DA;
	box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.popup .header {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 40px;
	z-index: 998;
	color: #ffffff;
	background-color: #0085DA;
	font-size: 12.5pt;
	font-weight: bold;
	line-height: 40px;
	padding: 0px 20px;
}

.popup .header a {
	color: #ffffff;
	font-weight: normal;
	float: right;
}

.popup .content {
	position: absolute;
	top: 40px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 998;	
	padding: 20px;
	overflow: auto;
}

.popup .content td{
	font-size: 9pt;
}

.popup .content th{
	font-size: 11pt;
}

.popup .footer {
	position: absolute;
	left: 0px;
	right: 0px;
	height: 40px;
	bottom: 0px;
	z-index: 998;	
	background-color: #eeeeee;
	line-height: 40px;
	padding: 6px 20px;
}

.popup .footer a {
	float: right;
}
#export-popup .footer{
    display:none;
}