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



/* ----  popup dialog style -------------------- */
.dialog-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(51, 51, 51, 0.7);
    z-index:3;
}
.dialog-dialog {
    position: fixed;
    text-align: left;
    border: 0px solid #ffffff;
    background-color:#ffffff;
    box-sizing:border-box;
    padding:35px 20px 25px 20px!important;
    width: 80%;
    max-width: 380px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px #888888;
}
.dialog-dialog p{
    padding:10px 0;
    font-size:1rem;
}
.dialog-dialog h3 {
    font-size: 1.2rem!important;
    color: #1a1a1a!important;
    font-weight: normal!important;
    background:none!important;
    padding:0!important;
    margin:0 auto 10px auto!important;
    text-align:center!important;
}
.dialog-dialog .desc {
    text-align:left;
    margin-left:auto;
    margin-right:auto;
    width:100%;
    padding:10px 0;
    font-size:1rem;
    border-radius:5px;
}
.dialog-dialog .attn{
    font-size:1rem;
    line-height:140%;
    padding:10px 0;
}
.dialog-dialog .ui-input-text input{
    background-color:#eeeeee;
    border-radius: 0px;
}
.dialog-dialog .ui-input-text{
    border-width: 0px;
}
.dialog-dialog .ui-shadow-inset{
    box-shadow:0 0 0;
}
.dialog-closeButton {
    width:25px;
    height:25px;
    position:absolute;
    top:0;
    right:0;
    text-align:center;
    cursor: pointer;
    background-position: center;
    background-image:none;
}
.diglog-closeButton:hover {
    background-color:#ffffff;
}
.dialog-closeButton:before,
.dialog-closeButton:after{
    background-color:#888888;
    width: 100%;
    height: 2px;
    display: block;
    content: "";
    position: absolute;
    top:18px;
    right:3px;
}
.dialog-closeButton:before{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform:rotate(45deg);
    transform: rotate(45deg);
}
.dialog-closeButton:after{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform: rotate(-45deg);
}


