@charset "utf-8";

.pop-window {
    position: fixed;
    width: 300px;
    height: 300px;
    /*border-radius: 10px;*/
    border:5px solid rgba(165,210,229,.8);
    box-shadow: -1px 0 10px rgba(165,210,229,.8),
    1px 0 10px rgba(165,210,229,.8),
    0 -1px 10px rgba(165,210,229,.8),
    0 1px 10px rgba(165,210,229,.8);/**/
}
.pop-window-title {
    background: rgb(221,221,221);
    height: 30px;
}
.pop-window-title:hover {
    cursor: move;
}
.pop-window-title div{
    position: absolute;
    font-size: 15px;
    line-height: 30px;
    max-width: 90%;
    left: 10px;
    right: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.pop-window-title a {
    position: absolute;
    font-size: 25px;
    line-height: 30px;
    right: 8px;
    top: 0;
}
.pop-window-toolbar {
    height: 30px;
    width: 100%;
    background: white;
}
.pop-window-content {
    position: absolute;
    background: white;
    bottom: 0;
    top: 60px;
    width: 100%;
}