#IESDisableFrame 
{
   position: absolute;
   left:    0px;
   top:     0px;
   right:   0px;
   bottom:  0px;

   z-index: 99998;
}

#IESDialogFrame 
{
   position: absolute;
   display: block;
   z-index: 99999;
   background:			var(--IESMsgBgColor);
   text-align: center;
   border-radius: 4px;
   resize: both;
   overflow:auto;
   min-width: 150px;
   min-height: 10em;
   border-width: 1px;
   border-style: solid;
   border-color: var(--IESMsgBorderColor);
}
 
#IESDialogHeader
{
   position: absolute;
   padding: 0px 10px 0px 10px;
   z-index: 10;
   background: 		var(--IESMsgTitleBgColor);
	color: 				var(--IESMsgTitleFgColor);
   width: 100%;
   height: 2em;
   line-height: 2em;
   text-align: center;
	vertical-align: middle;
   border-radius: 5px 5px 0px 0px;
   text-align: left;
}


#IESDialogText
{
   position: absolute;
   padding: 0px 10px 0px 10px;
   padding: 10px;
   top: 2em;
   bottom: 3em;
   width: 100%;
   text-align: left;
   color:				var(--IESMsgFgColor);
   overflow-y: auto;

}

#IESDialogFooter
{
   
   position: absolute;
   display: flex;
   flex-direction: row;
   justify-content: center;
   top: calc(100% - 3em);
   left: 7px;
   right: 7px;
   height: 3em;
   border-top: 1px solid rgb(176,176,176);
   background: var(--IESMsgBgColor);
}


#IESDialogButton
{
   position: relative;
   display: inline-block;
   top: 0.5em;
   height: 2em;
   border-radius: 4px;
   margin: 0px 5px 0px 5px;
   width: 7em;
}