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/ajax-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;
    border: 4px solid #DFDFDF;
    border-radius: 50%;
    background: #fff url("/images/x-gray.png") no-repeat center center;
    position: absolute;
    top: -22px;
    right: -22px;
    cursor: pointer;
}

div.modalWnd 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;
}

