div.sticky-queue {
    position: fixed;
    background: #fff;
    top: 30px;
    /*border: 1px solid #999;*/
    box-shadow: 0px 0px 3px #bbb;
    width: 300px;
    z-index: 100;
    max-height: 92%;
    overflow-y: auto;
}

div.sticky-note {
    padding-right: 20px;
}

div.sticky {
    font-size: 13px;
    display: none;
    padding: 10px;
    position: relative;
}

i.sticky-close {
    position: absolute;
    top: 7px;
    right: 7px;
    height: 15px;
    width: 15px;
    cursor: pointer;
    font-style: normal;
    font-size:13px;
}
i.sticky-close:before {
    content: "\f00d";
}

.top-right {
    right: 20px;
}

.top-left {
    left: 20px;
}

.top-right, .top-left {
    top: -2px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.bottom-right {
    right: 20px;
}

.bottom-left {
    left: 20px;
}

.bottom-right, .bottom-left {
    bottom: -2px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.border-top-right, .border-top-left {
    border-top: 1px solid #999;
}

.border-bottom-right, .border-bottom-left {
    border-bottom: 1px solid #999;
}