
.dialog-disable {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999999;
}

.dialog-disable.noblack {
	background-color: transparent;
}

.dialog {
	position: absolute;
	background-color: #FFF;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.dialog > .dialog-header {
	width: 100%;
	background-color: #0D3246;
}

.dialog > .dialog-header span {
	margin-left: 10px;
	font-size: 18px;
	color: #FFF;
	font-weight: 300;
}

.dialog > .dialog-content {
	width: 100%;
	overflow: auto;
}

.dialog > .dialog-content .dialog-content-inner {
	margin: 10px;
	font-size: 14px;
}

.dialog > .dialog-footer {
	width: 100%;
}

.dialog > .dialog-footer .dialog-footer-inner {
	margin: 0 10px;
	text-align: right;
}

.dialog .dialog-close {
	float: right;
	margin-right: 10px;
	height: 24px;
	cursor: pointer;
}

.dialog .dialog-close:hover {
	opacity: 0.8;
}

.dialog-header > div > div {
    display: table-cell;
    vertical-align: middle;
}


.dialog-header > div {
    display: table;
    height: 100%;
    width: 100%;
}