/*
 * Original version: 1.0 © 2010 Andrew Valums ( andrew(at)valums.com )
 * Current Maintainer (2.0+): 2012, Ray Nicholus ( fineuploader(at)garstasio.com )
 *
 * Licensed under MIT license, GNU GPL 2 or later, GNU LGPL 2 or later, see license.txt.
 */
#fine-uploader {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 2px 2px 2px lightgrey;
    border: none; 
}
.qq-uploader {
    position: relative;
    width: 100%;
}
.qq-upload-button {
    display: block;
    width: 100%;
    padding: 5px 0;
    margin-bottom: -1px;    /* ??? */
    text-align: center;
background-color: #f6c167;}
.qq-upload-button-hover {
    background-color: #d4cbbf;
}
.qq-upload-button-focus {
    outline: 1px dotted #000000;
}
.qq-upload-button > DIV {
    text-align: center;
}
.qq-upload-drop-area, .qq-upload-extra-drop-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 30px;
    z-index: 2;
    text-align: center;
}
.qq-upload-drop-area span {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -8px;
    text-align: center;
}
.qq-upload-extra-drop-area {
    position: relative;
    margin-top: 50px;
    padding-top: 30px;
    height: 20px;
    min-height: 40px;
}
.qq-upload-drop-area-active {
    background-color: #e4dbcf;
}
.qq-upload-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 11px;
    box-shadow: 2px 2px 2px lightgrey;
}
.qq-upload-list li {
    margin: 0;
    padding: 9px;
    line-height: 15px;
    border-top: 1px solid #DDD;
    background-color: #f6c167;
    box-shadow: 2px 2px 2px lightgrey;
    color: #fff;
}
.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-retry, .qq-upload-failed-text, .qq-upload-finished {
    margin-right: 12px;
}
.qq-upload-status-text, .qq-upload-file, .qq-upload-size, .qq-upload-cancel, .qq-upload-retry {
    font-size: 11px;
}
.qq-upload-file {
    width: 100px;
}
.qq-upload-spinner {
    display: inline-block;
    background: url("loading.png");
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
}
.qq-drop-processing {
    display: none;
}
.qq-drop-processing-spinner {
    display: inline-block;
    background: url("processing.png");
    width: 24px;
    height: 24px;
    vertical-align: text-bottom;
}
.qq-upload-finished {
    display:none;
    width:15px;
    height:15px;
    vertical-align:text-bottom;
}
.qq-upload-retry, .qq-upload-cancel {
    width: 100%;
    text-align: right;
    color: #000000;
}
.qq-upload-retryable .qq-upload-retry {
    display: inline;
}
.qq-upload-size, .qq-upload-cancel, .qq-upload-retry {
    font-weight: normal;
}
.qq-upload-retry {
    display: none;
}
.qq-upload-failed-text {
    display: none;
    font-style: italic;
    font-weight: bold;
}
.qq-upload-failed-icon {
    display:none;
    width:15px;
    height:15px;
    vertical-align:text-bottom;
}
.qq-upload-fail .qq-upload-failed-text {
    display: inline;
}
.qq-upload-retrying .qq-upload-failed-text {
    display: inline;
    color: #D60000;
}
.qq-upload-list li.qq-upload-success {
    color: #FFFFFF;
    border-top: 1px solid #DDD;
    background-color: #6cbd58;
    box-shadow: 2px 2px 2px lightgrey;
}
.qq-upload-list li.qq-upload-fail {
    color: #FFFFFF;
    border-top: 1px solid #DDD;
    background-color: #dd5952;
    box-shadow: 2px 2px 2px lightgrey;
}
.qq-progress-bar {
    width: 0%;
    height: 15px;
    border-radius: 6px;
    margin-bottom: 3px;
    display: none;
    background-color: rgba(41,137,216,1);
    background: linear-gradient(rgba(30,87,153,1) 0%, rgba(41,137,216,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%);
}
