@charset "UTF-8";
/*
 * jQuery File Upload Plugin CSS 1.3.0
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
.fileinput-button {
  position: relative;
  overflow: hidden;
  float:left;
  background-color: #15A321;
  height: 18px;
  border: 1px solid black;
  border-radius: 2px;
  width: 120px;
  top: -11px;
  left: 5px;
  text-align: center;
  color: white;
  padding-top: 5px;
  padding-right: 2px;
}

.fileinput-button:hover {
  background-color: #13991E;
}

.fileinput-button span {
}
.fileinput-button input {
  padding: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 100px;
  cursor: pointer;
  width: 1px;
  height: 1px;
}

/* Fixes for IE < 8 */
@media screen\9 {
  .fileinput-button input {
    filter: alpha(opacity=0);
    font-size: 100%;
    height: 100%;
  }
}

#progress {
    float: left;
}
.bar {
    height: 18px;
    background: green;
}
