/* ---------------------------------- */
/* Диалоги */
/* ---------------------------------- */

#ilex-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter:alpha(opacity=30);
    -moz-opacity:0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
}


.ilex-dialog {
    line-height: normal;
    border: 1px solid #BACDDC;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.6);
    display: none;
    left: 50%;
    position: fixed;
    top: 50%;
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    overflow: hidden;
}

.ilex-dialog .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 11px;
    height: 10px;
    cursor: pointer;
    background: transparent url('images/close.png') 0px 0px no-repeat;
}

.ilex-dialog .title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.ilex-dialog textarea {
    resize: none;
}

#error-dialog.ilex-dialog, 
#message-dialog.ilex-dialog{
    z-index: 501;
}

