.popup-shadow {
	background-color: #000000;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 1000;
	opacity: 0.75;
	display: none;
}
.popup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: block;
    overflow-y: auto;
}
.popup-tbl {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
    max-width: 1248px;
    margin: 0px auto;
}
.popup-tr {
    display: table-row;
    height: 100%;
}
.popup-td {
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center;
}
.popup-content-wrap {
    display: inline-block;
    max-width: 100%;
    min-width: 320px;
    max-height: 100%;
}
.popup-content {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}
.popup-content > * {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}
.popup-content * {
    max-width: 100%;
}

.popup-close {
}