<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.seDialog {
    all: initial;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    display: none;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 11pt;
    height: 100%;
    left: 0;
    line-height: 1.5;
    overflow: auto;
    padding-top: 100px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}
  
.seDialog&gt;div {
    all: initial;
    background-color: #fefefe;
    border: 1px solid #888;
    box-shadow: black 3px 4px 4px;
    display: block;
    left: 50%;
    padding: 32px 16px 16px 16px;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
}

.seDialog label:not([class]) { 
    all: initial;
    display: inline-block;
}
.seDialog_buttons {
    all: initial;
    display: block;
    text-align: right; 
    margin-top: 4px;
}
.seDialog_buttons input[type="button"]:not([class]), .seDialog_buttons input[type="submit"]:not([class]) {
    all: initial;
    background-color: rgb(63,174,41);
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    line-height: 200%;
    margin: 0px;
    padding: 0px 12px;
    text-align: center;
    width: initial;
}
.seDialog_buttons input[type="button"]:not([class]):hover { background-color: rgb(94,199,73); }
.seDialog_buttons input[type="submit"]:not([class]) { background-color: rgb(0, 71, 186); }
.seDialog_buttons input[type="submit"]:not([class]):hover { background-color: rgb(0,129,201); }

  
.seDialog_close {
    background-color: rgb(38, 55, 128);
    border-radius: 50%;
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    height: 24px;
    line-height: 75%;
    padding-left: 1px;
    position: absolute;
    right: 6px;
    text-align: center;
    top: 6px;
    width: 24px;
    z-index: 1;
}
  
.seDialog_close:hover, .seDialog_close:focus {
    color: whitesmoke;
    text-decoration: none;
    cursor: pointer;
}
.seDialog_form {
    display: inline-block;
    width: 100%;
}
.seDialog_form label:not([class]) {
    font-size: small;
    clear: left;
    float: left; 
    min-width: calc(100% / 4);
    margin-right: 12px; 

}
.seDialog_form input[type="text"]:not([class]) {
    clear: right;
    float: left; 
    width: calc(100% / 2);
}

.seDialog_title {
    background-color: rgb(129, 100, 169);
    color: white;
    position: absolute;
    left: 0;
    padding: 8px;
    right: 0;
    top: 0;

}
</pre></body></html>