div {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.dialog-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;        
    background-color: rgba(142, 174, 177, 0.6);
}

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

.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;
	right: 10px;
	width: 20px;
    height: 20px;
    background-position: center;
    cursor: pointer;
/*	background-color: #3385AD;*/
}

.dialog-closeButton:HOVER {
/*    background-color: #66A3C2;*/
}

.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;
}
