/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
.dropzone, .dropzone * {
  /*box-sizing: border-box;*/ 

}

.dropzone {
  position: relative; 
  /*z-index:1000;*/
}
  .dropzone .dz-preview {
	/*z-index:999;*/
    position: relative;
    display: block;
    width: 98%;
    margin-left: 4px; 
	padding-bottom:2px;}
    .dropzone .dz-preview .dz-progress {
      display: block;
      height: 20px;
      border: 1px solid #aaa; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        display: block;
        width: 0;
        background: green; }
    .dropzone .dz-preview .dz-error-message {
      color: red;
      display: none; }
    .dropzone .dz-preview.dz-error .dz-error-message, .dropzone .dz-preview.dz-error .dz-error-mark {
      display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      display: block; }
    .dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark {
      position: absolute;
      display: none;
      left: 30px;
      top: 30px;
      width: 100%;
      left: 50%;
      margin-left: -27px; }
