.dialog_mask{
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: black;
    opacity: .7;
    filter: alpha(opacity=70);
    z-index: 9999;
    display: none;
}

.dialog div{
    position: relative;
}

.dialog{
    background-color: white;
    position: fixed;
    width: 680px;
    z-index: 10000;
    display: none;
}

.dialog_header {
    text-align: center;
    height: 50px;
    overflow: hidden;
    width: 100%;
    background: #f3f3f3;
    border-bottom: 1px solid #ccc;
}
.dialog_header > span {
    color: #000;
    display: inline-block;
    padding: 16px;
}
.dialog_footer {
    height: 50px;
    width: 100%;
    background: #f3f3f3;
    border-top: 1px solid #ccc;
}

.dialog_butclose {
    background: url("/img/but-close.png") no-repeat scroll 10px 4px;
    border-radius: 4px;
    display: block;
    height: 35px;
    padding: 3px 10px 0 25px;
    position: absolute !important;
    right: 18px;
    top: 8px;
    cursor: pointer;
}

.dialog_content{
    width: 100%;
    overflow: hidden;
}

.dialog_content > span {
    color: #333;
    display: block;
    padding: 1.4em;
}

.decorated_list {
    list-style: inside;
    padding-left: 15px;
}

.decorated_list li {margin-bottom: 5px;}

.error_list {margin-bottom: 10px;}

@media all and (max-width: 700px) {
    .dialog {width: 90%; left: 5% !important;}
}