div.dlg-back{
	position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: grey;
    opacity: 0.3;
}

div.dlg-main{
	position: fixed;
    top: 0%;
    left: 0%;
    z-index: 10000;
    border-radius: 5px 5px 5px 5px;
    border: 4px solid darkred;
    background-color: white;
    display: inline-block;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}

div.dlg-header{
	//position: absolute;
    width: 100%;
    height: 30px;
    top: 0%;
    left: 0%;
    cursor: move;
    //background-color: #483d8b;
    background-color: sienna;
}
span.dlg-title{
	position: absolute;
	display: inline-block;
	height: 25px;
	top: 2px;
	left: 2px;
	padding-top: 3px;
	margin-left: 5px;
    color: white;

}

span.btn-exit{
	position: absolute;
	height: 25px;
	width: 25px;
	right: 2px;
	background-image: url('/assets/pics/close-cross.png');
	background-size: 100% 100%;
	border: 0px solid white !important;
	box-sizing: border-box;
}
span.btn-exit:hover{
	box-shadow: 1px 1px 2px rgba(0,0,0,0.25), 1px 1px 2px rgba(0,0,0,0.2);
    padding: 2px;
    border-radius: 12px 12px 12px 12px;
    cursor: pointer;
}

div.dlg-content{
    width: 100%;
    top: 0%;
    left: 0%;
    cursor: auto !important;
    overflow: auto;
    text-align: left;
}

span.span-centered{
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}


span.msgContent{
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
}

