@charset "utf-8";
/* CSS Document */


/* It's easier to calculate widths 
 * with border-box layout */


.customfile-wrap {
  position: relative;
  padding: 0;
  margin-bottom: .5em;
}
.customfile-filename {
  width: 230px;
  padding: .4em .5em;
  border: 1px solid #A8A49D;
  border-radius: 2px 0 0 2px;
  /*box-shadow: inset 0 1px 2px rgba(0,0,0,.2);*/
}
.customfile-filename:focus { 
  outline: none;
}

.customfile-upload {
  display: inline-block;
  width:30%;
  padding:0.18em 3px 0;
  height:34px;
  border:none;
  color: #fff;
  cursor: pointer;
  background: #0054ab;
  font:12px/30px Arial, Helvetica, sans-serif; font-weight: bold;
  
}

.customfile-upload:hover {
  background: #08407a;
  box-shadow: 0 0 2px rgba(0,0,0,.2);
}
.customfile-upload::-moz-focus-inner { /* Fix firefox padding */
  padding: 0; border: 0 
}
