﻿  #white-background {
        display:none;
        width:100%;
        height:100%;
        position:fixed;
        top:0px;
        left:0px;
        background-color:#fefefe;
        opacity:0.7;
        z-index:9999;

        }
        #dlgbox {
            display:none;
            display: block;
            position: fixed;
            width: 480px;
            z-index: 9999;
            border-radius: 10px;
            background-color: #7c7d7e;
        }

        #dlg-header {
            background-color: #6d84b4;
            color: white;
            font-size: 12px;
            padding: 10px;
            margin: 10px 10px 0px 10px;
        }

        #dlg-body {
            background-color: white;
            color: black;
            font-size: 14px;
            padding: 10px;
            margin: 0px 10px 0px 10px;
        }

        #dlg-footer {
            background-color: #f2f2f2;
            text-align: right;
            padding: 10px;
            margin: 0px 10px 10px 10px;
        }

            #dlg-footer button {
                background-color: #6d84b4;
                color: white;
                padding: 5px;
                border: 0px;
            }