.modal__background {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    background-color: #bbb;
    opacity: 0.4;
    filter: alpha(Opacity=40);
}

.modal__window {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}

.modal__window * {
    box-sizing: border-box;
}

.modal__window > div {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 0 7px #999;
    border-radius: 4px;
    border: 1px solid #999;
    box-sizing: border-box;
}

.modal__title {
    background: #eee;
    background: linear-gradient(to top, #eee 0%, #fff 85%, #fff 100%);
    padding: 8px;
    border-bottom: 1px solid #ccc;
    border-radius: 4px 4px 0 0;
}

.modal__title span {
    color: #444;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
}

.modal__button_close {
    color: #999;
    text-align: center;
    font-family: Arial, serif;
    font-weight: bold;
    font-size: 24px;
    float: right;
    width: 16px;
    box-sizing: border-box;
    line-height: 18px;
}

.modal__button_close:hover {
    color: #222;
    cursor: pointer;
}

.modal__body {
    overflow-y: auto;
    padding: 8px;
    height: 100%;
    clear: both;
    box-sizing: border-box;
    word-wrap: break-word;
}

.modal__footer {
    padding: 8px;
    background: #eee;
    border-top: 1px solid #ccc;
    background: linear-gradient(to top, #fff 0%, #eee 85%, #eee 100%);
    border-radius: 0 0 4px 4px;
    text-align: right;
    min-height: 36px;
}