/************************************************************************************************************************/
/** HTML5 Uploader **/
/************************************************************************************************************************/

#upload_form {
    padding:0px;
}
#upload_form > div {
    margin-bottom:10px;
}
.clear_both {
    clear:both;
}
#file_selector {
    width: 402px;
    display:block;
    overflow: hidden;
}
#progress_info {
    font-size: 9pt;
    width: 402px;
    display:none;
}
#progress_bar {
    border:1px solid #ccc;
    display:block;
    float:left;
    height:12px;

    border-radius:8px;
    -moz-border-radius:8px;
    -ms-border-radius:8px;
    -o-border-radius:8px;
    -webkit-border-radius:8px;

    background: -moz-linear-gradient(#0066cc, #004b95);
    background: -ms-linear-gradient(#0066cc, #004b95);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0066cc), color-stop(100%, #004b95));
    background: -webkit-linear-gradient(#0066cc, #004b95);
    background: -o-linear-gradient(#0066cc, #004b95);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0066cc', endColorstr='#004b95');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0066cc', endColorstr='#004b95')";
    background: linear-gradient(#0066cc, #004b95);
}
#progress_percent {
    float: right;
    text-align: right;
}
#progress_blurb {
    float: left;
    text-align: left;
}
