/* 
    Document   : uploader_form
    Created on : 11-gen-2013, 16.09.19
    Author     : Cristiano Magro
    Description:
        wrapper per la form di upload dei file
*/
root {
  display: block;
}
/* Reset */
.upload-form,
.upload-form div,
.upload-form input,
.upload-form h1,
.upload-form p {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}
/* Form Container */
.upload-form {
  /*border: 3px, solid, blue;*/
  /*width: 90%;*/
  /*margin-right: 12px;*/
  min-height: 40px;
  /*padding: 15px 20px 15px 25px;*/
  /* Clear Floats */
  /* Select & Upload Buttons */
  /* Added Files */
  /* Remove File Button */
  /* Progress Bar */
}
.upload-form .cb {
  clear: both;
}
.upload-form #filelist {
  padding-left: 0 px;
}
.upload-form p {
  padding: 2px 0;
  font-family: sans-serif;
  font-size: 12px;
  color: black;
}
.upload-form #pulsanti {
  padding-bottom: 5px;
  padding-left: 2px;
  height: 35px;
}
.upload-form #pickfiles,
.upload-form #pickfiles2 {
  padding-right: 5px;
  /*float: left;*/
}
.upload-form #uploadfiles {
  /*width: 100px;*/
  float: left;
}
.upload-form .addedFile {
  position: relative;
  display: block;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 5px;
  padding: 0 0 0 35px;
  height: 30px;
  font-family: sans-serif;
  font-size: 12px;
  line-height: 30px;
  color: #646464;
  background: #fcfcfc url(../img/uploader/text-x-generic.png) no-repeat 5px center;
  /*width : 400px;*/
}
.upload-form a.removeFile {
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  top: 2px;
  right: 2px;
  background: url(../img/uploader/emblem-unreadable.png) no-repeat 0px center;
}
.upload-form .ui-progressbar,
.upload-form .ui-progressbar-value {
  position: relative;
  height: 4px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.upload-form .ui-progressbar {
  cursor: pointer;
  margin: 15px 0 20px 0;
  background: #242424;
  -webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1);
  -moz-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1);
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1);
}
.upload-form .ui-progressbar-value {
  background: #82d344;
  background: -webkit-linear-gradient(top, #82d344 0%, #51af34 100%);
  background: -moz-linear-gradient(top, #82d344 0%, #51af34 100%);
  background: -o-linear-gradient(top, #82d344 0%, #51af34 100%);
  background: -ms-linear-gradient(top, #82d344 0%, #51af34 100%);
  background: linear-gradient(top, #82d344 0%, #51af34 100%);
}
.upload-form .ui-progressbar-value span.progressTooltip {
  position: absolute;
  display: block;
  width: 36px;
  height: 14px;
  padding: 5px 0 4px 0;
  top: 10px;
  right: -18px;
  font-family: sans-serif;
  font-weight: bold;
  line-height: 14px;
  text-align: center;
  font-size: 12px;
  color: #646464;
  background: transparent url(../img/uploader/tooltip.png) no-repeat;
}
.upload-form .c_div_pulsanti {
  float: left;
  padding-top: 6px;
  padding-right: 25px;
  padding-bottom: 5px;
}
