/*****************************************************
*  DRAWERS.CSS
******************************************************/

#print_drawer {
    position: relative;
    float: right;
    width: 225px;
    padding-left: 20px;
}

#print_drawer button {
    position: relative;
    width: 100%;
    margin-top: -2px;
    text-align: left;
}

#print_drawer button.on {
    background: #f5f5f5;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-top-color: transparent;
}

#print_drawer button .check {
    position: absolute;
    top: 1px;
    right: 0;
    left: auto;
    padding: 0;
    border: 0;
    z-index: 100;
}

#print_drawer_dialog .queue {
    display: none;
    position: fixed;
    bottom: 43px;
    right: 15px;
    width: 275px;
    padding: 15px;
    background: #fff;
    border-radius: 4px 4px 0 0;
    border: 1px solid #c6c6c6;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

#print_drawer_dialog .icon_close {
    position: absolute;
    right: -13px;
    top: -13px;
    padding: 4px;
    cursor: pointer;
}

#print_drawer_dialog .menu {
    width: 260px;
}

#print_drawer_dialog .queue_title {
    font-weight: bold;
    padding: 7px 0 2px 0;
    border-bottom: 1px solid #d0d0d0;
}

#print_drawer_dialog .queue_label {
    font-size: 12px;
    padding: 15px 0 4px 0;
}

#print_drawer_dialog .progress {
    border-radius: 3px;
    background: #bebebe;
    padding: 2px;
}

#print_drawer_dialog .progress div {
    border-radius: 2px;
    height: 7px;
    background: #327bca;
    background: -webkit-linear-gradient(top, rgba(52, 128, 211, 1) 0%, rgba(47, 116, 191, 1) 100%);
    background: -o-linear-gradient(top, rgba(52, 128, 211, 1) 0%, rgba(47, 116, 191, 1) 100%);
    background: -ms-linear-gradient(top, rgba(52, 128, 211, 1) 0%, rgba(47, 116, 191, 1) 100%);
    background: linear-gradient(to bottom, rgba(52, 128, 211, 1) 0%, rgba(47, 116, 191, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3480d3', endColorstr='#2f74bf', GradientType=0);
}

#print_drawer_dialog .progress div.done {
    background: #003f85;
    background: -webkit-linear-gradient(top, rgba(0, 71, 150, 1) 0%, rgba(0, 53, 112, 1) 100%);
    background: -o-linear-gradient(top, rgba(0, 71, 150, 1) 0%, rgba(0, 53, 112, 1) 100%);
    background: -ms-linear-gradient(top, rgba(0, 71, 150, 1) 0%, rgba(0, 53, 112, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 71, 150, 1) 0%, rgba(0, 53, 112, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004796', endColorstr='#003570', GradientType=0);
}

#print_drawer_dialog .jobs {
    overflow: auto;
    width: 275px;
    height: 125px;
}