.dialog {
    position: absolute;
    width: 400px;
    background-color: white;
}

.dialog .title {
    padding: 0;
    background-color: #F1F2F2;
    text-align: left;
    border: 1px solid #CCCCCC;
    color: #4A525C;
    font-weight: bold;
    height: 44px;
    font-size: 14px;
}

.dialog .title div {
    margin-left: 25px;
    margin-top: 15px;
}

.dialog .body {
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    padding: 10px;
    font-weight: bold;
}

.dialog .footer {
    text-align: center;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    padding: 10px;

}

.dialog .footer input {
    min-width: 100px;
    height: 28px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #bcbcbc;
    font-weight: bold;
    background-color: #f7f6f6;
    color: #4a525c;
    text-shadow: white 1px 1px 0;
    font-size:12px;
    font-family: Arial;
}

.dialog .footer input:hover {
    background-image: linear-gradient(bottom, rgb(208, 208, 208) 28%, rgb(250, 250, 250) 82%);
    background-image: -o-linear-gradient(bottom, rgb(208, 208, 208) 28%, rgb(250, 250, 250) 82%);
    background-image: -moz-linear-gradient(bottom, rgb(208, 208, 208) 28%, rgb(250, 250, 250) 82%);
    background-image: -webkit-linear-gradient(bottom, rgb(208, 208, 208) 28%, rgb(250, 250, 250) 82%);
    background-image: -ms-linear-gradient(bottom, rgb(208, 208, 208) 28%, rgb(250, 250, 250) 82%);

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.28, rgb(208, 208, 208)), color-stop(0.82, rgb(250, 250, 250)));
}

.dialog .footer input:active {
    background-image: linear-gradient(bottom, rgb(208, 208, 208) 82%, rgb(250, 250, 250) 28%);
    background-image: -o-linear-gradient(bottom, rgb(208, 208, 208) 82%, rgb(250, 250, 250) 28%);
    background-image: -moz-linear-gradient(bottom, rgb(208, 208, 208) 82%, rgb(250, 250, 250) 28%);
    background-image: -webkit-linear-gradient(bottom, rgb(208, 208, 208) 82%, rgb(250, 250, 250) 28%);
    background-image: -ms-linear-gradient(bottom, rgb(208, 208, 208) 82%, rgb(250, 250, 250) 28%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.82, rgb(208, 208, 208)), color-stop(0.28, rgb(250, 250, 250)));
}

.dialog .footer input:focus{
    outline: none;
}

.splash_text {
    background-color: white;
    border: 1px solid #CCCCCC;
    padding: 15px;
    text-align: center;
    width: 400px;
}

.splash_text div:first-child {
    margin-bottom: 5px;
    background: url("/template/images/wait.gif") no-repeat 20px;
    min-height: 16px;
}

.dialog .body .good {
    border: 1px solid #9ADF8F;
    padding: 15px;
    background: #D5FFCE url("/template/images/dialog/good.gif") no-repeat left top;
    padding-left: 40px;
    color: #508600;
}

.dialog .body .info {
    border: 1px solid #A5B7EF;
    padding: 15px;
    color: #0888C3;
    background: #DBE3FF url("/template/images/dialog/info.gif") no-repeat left top;
    padding-left: 40px;
}

.dialog .body .warn {
    border: 1px solid #E7DD5C;
    padding: 15px;
    color: #69610A;
    background: #FFFBCC url("/template/images/dialog/warn.gif") no-repeat left top;
    padding-left: 40px;
}

.dialog .body .error {
    border: 1px solid #E19393;
    padding: 15px;
    color: #E3302C;
    background: #FFCECE url("/template/images/dialog/error.gif") no-repeat left top;
    padding-left: 40px;
}

.dialog .body input {
    background-image: url("/template/images/input_text_bg.gif");
    border: 1px solid #BFBFBF;
    height: 22px;
    padding: 7px 35px 0 5px;
    width: 169px;
}

.dialog .body input.checkbox {
    background-image: none;
    border: 1px solid #BFBFBF;
    height: 10px;
    padding: 0;
    width: 10px;
}

.dialog .body select {
    width: 211px;
    height: 22px;
    margin: 1px;
}

/* IFRAME DIALOG*/

.dialogIFrameDIV {
    position: absolute;
    z-index: 300;
    border: 1px solid #666666;
    padding: 0;
    background-color: #E8E8E8;
}