/* File upload via drag and drop */

    #uplhandler
    {
        float: left;
        border: 1px dotted #aaa;
        width: 120px;
        height: 120px;
        background: #f0e0d0;
        text-align: center;
        vertical-align: middle;
        font-size: 0.9em;
        color: #aaa;
    }

    .progressBar
    {
        width: 100px;
        height: 16px;
        border: 1px solid #aaa;
        overflow: hidden;
        display: inline-block;
        margin: 0px 0px 0px 0px;
        font-size: 0.9em;
        vertical-align: top;
    }
 
    .progressBar div
    {
        height: 100%;
        color: #fff;
        text-align: center;
        line-height: 16px; /* same as .progressBar height */
        width: 0;
        background-color: #999;
    }
    
    .statusbar
    {
        float: right;
        width: 480px;
        padding: 2px 0px 0px 10px;
        vertical-align: top;
    }
  
    .filename
    {
        font-size: 0.9em;
        display: inline-block;
        vertical-align: top;
        width: 200px;
    }

    .filesize
    {
        font-size: 0.9em;
        display:inline-block;
        vertical-align:top;
        width: 60px;
        margin-left:10px;
        margin-right:5px;
    }
    
    .abort
    {
        background-color:#a8352f;
        border: 1px solid #a8352f;
        display:inline-block;
        float: right;
        width: 80px;
        text-align: center;
        line-height: 16px;
        color:#fff;
        font-size: 0.9em;
        cursor:pointer;
        vertical-align:top
    }
