.dialog-container {
	z-index: 5;
    position: fixed;   
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;        
    background-color: rgba(000, 000, 000, 0.7);
    max-height: 3000px;
}

.dialog-dialog {
	position: fixed;     
    text-align: left;   
    border: 0px solid gray;         
    background-color: rgba(255, 255, 255, 1);
}

.dialog-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 10%;
    background-color: #006699;
    color: white;
    font-weight: bold;
    font-size: large;
    padding: 5px;
}

.dialog-content {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
    height: 75%;
    background-color: rgba(255, 255, 255, 1);;
    color: black;
    padding: 10px;
    overflow: auto;	
}

.dialog-closeButton {
	position: absolute;
	top: -0.5em;
	right: -0.5em;
	width: 34px;
    height: 34px;
    background-image: url("../../image/cmn/btn_del_modal.png");
    background-position: center;
    cursor: pointer;
}

.dialog-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
    height: 15%;
    background-color: #E0EBEB;
    color: black;
    font-weight: bold;
    font-size: medium;
    padding: 5px;
    text-align: right;
}