.cyan-window {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: rgba(0, 0, 0, 0.13) 0 4px 10px 0;
    width: 300px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-image: initial;
    border-radius: 4px;
}

.cyan-window-header {
    height: 32px;
    line-height: 32px;
    position: relative;
    color: #666666;
    font-size: 16px;
    border-bottom: 1px solid #e1e1e1;
    padding: 0 11px;
    cursor: move;
}

.cyan-window-footer {
    background: #eeeeee;
}

.cyan-window-title {
    float: left;
    height: 32px;
    line-height: 32px;
    text-indent: 5px;
    color: #666666;
}

.cyan-window-buttons {
    float: right;
    padding-right: 2px;
    padding-left: 10px;
    margin-top: 7px;
    cursor: pointer;
}

.cyan-window-buttons div {
    width: 19px;
    height: 19px;
}

.cyan-window-close {
    background: url(window/close.gif) no-repeat center;
}

.cyan-window-close:hover {
    background: url(window/close_hover.gif) no-repeat center;
}

.cyan-window-loading {
    background: transparent url(../../../images/icons/loading.gif) no-repeat 10px 10px;
    padding-left: 80px;
    padding-top: 29px;
}

.cyan-messagebox-icon {
    clear: both;
    float: left;
    width: 48px;
    height: 48px;
    margin-top: 10px;
    margin-left: 20px;
}

.cyan-messagebox-icon-info {
    background: no-repeat url(window/info.gif);
}

.cyan-messagebox-icon-question {
    background: no-repeat url(window/question.gif);
}

.cyan-messagebox-icon-error {
    background: no-repeat url(window/error.gif);
}

.cyan-messagebox-message {
    float: left;
    height: 30px;
    padding-top: 18px;
    margin-left: 10px;
}

.cyan-messagebox-buttons {
    clear: both;
    text-align: center;
    margin-top: 5px;
    float: left;
    width: 100%;
}

.cyan-progressbox-message {
    font-size: 12px;
    text-indent: 15px;
    width: 100%;
    height: 16px;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cyan-progressbox-progress {
    position: relative;
    height: 22px;
    margin-top: 8px;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #888888;
}

.cyan-progressbox-progress-bar {
    float: left;
    height: 22px;
    background: #dddddd;
}

.cyan-progressbox-progress-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 22px;
    line-height: 22px;
    text-align: center;
}

.cyan-promptbox-message {
    font-size: 12px;
    text-indent: 10px;
    width: 100%;
    height: 16px;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cyan-promptbox-input {
    margin: 5px 10px 8px;
}

.cyan-promptbox-input input {
    width: 100%;
    border: 1px solid #888888;
    height: 18px;
}

.cyan-promptbox-input textarea {
    width: 100%;
    border: 1px solid #888888;
    height: 85px;
}

.cyan-promptbox-buttons {
    clear: both;
    text-align: center;
}

.cyan-box-buttons button {
    padding: 5px 14px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin-bottom: 6px;
    margin-right: 4px;
    margin-left: 4px;
    background: #1a73e8;
    border: #1a73e8 1px solid;
    color: #ffffff;
}

body .cyan-box-buttons button:active {
    background-color: #64a0ef;
    border: #64a0ef 1px solid;
    background-image: none;
}

.cyan-box-buttons button:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    background: #1a73e8;
    border: #1a73e8 1px solid;
}

.cyan-box-buttons button.cyan-box-ok, .cyan-box-buttons button.cyan-box-yes {
    background: #1a73e8;
    border: #1a73e8 1px solid;
    color: #ffffff;
}

.cyan-box-buttons button.cyan-box-ok:active, .cyan-box-buttons button.cyan-box-yes:active {
    background-color: #64a0ef;
    border: #64a0ef 1px solid;
}

.cyan-box-buttons button.cyan-box-cancel, .cyan-box-buttons button.cyan-box-no, .cyan-box-buttons button.cyan-box-close {
    background-color: #ffffff;
    border: #dadce0 1px solid;
    color: #1a73e8;
}

.cyan-box-buttons button.cyan-box-cancel:active, .cyan-box-buttons button.cyan-box-no:active, .cyan-box-buttons button.cyan-box-close:active {
    background-color: #64a0ef;
    border: #64a0ef 1px solid;
}

.cyan-messagebox-remark {
    clear: both;
    float: left;
    margin-top: 5px;
    margin-left: 25px;
}