div.background {
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.6;
    position: fixed;
    top:0;
    left:0;
    z-index: 500;
    display: none;
}

div.modalWnd {
    font: 12pt Verdana, Tahoma, Arial, Helvetica, sans-serif;
    z-index: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    background-color: #fff;
    border: 4px solid #DFDFDF;
    border-radius: 5px;
    /*padding: 10px;*/
}

div.modal-loader {
    width: 100%;
    height: 100%;
    background: url('/images/loading.gif') center center no-repeat;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}
div.modal-content {
    width: 100%;
    height: 100%;
    display: none;
}

div.modalClose{
    width: 40px;
    height: 40px;
    background: transparent url("/images/x2.png") no-repeat center center;
    background-size: contain;
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
}

div.buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 30px;
    background: #DFDFDF;
}

div.backBtn:hover {
    color: #333;
}
div.backBtn {
    background: #DFDFDF;
    height: 30px;
    float: left;
    color: #898989;
    text-align: right;
    cursor: pointer;
    padding-left: 15px;
    padding-top: 10px;
}

div.nextBtn {
    background: #DFDFDF;
    height: 30px;
    float: right;
    color: #898989;
    text-align: left;
    cursor: pointer;
    padding-right: 15px;
    padding-top: 10px;
}

div.nextBtn:hover {
    color: #333;
}
/*
div.modal-desc {
    min-height: 40px;
    position: absolute;
    bottom: -44px;
    left: -4px;
    width: 100%;
    background: #DFDFDF;
    border-radius: 5px;
    border: 4px solid #DFDFDF;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}*/