﻿@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;
  margin-top:15px;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px;
  direction: ltr;
  cursor: pointer;
}

/* Fixes for IE < 8 */
@media screen\9 {
  .fileinput-button input {
    filter: alpha(opacity=0);
    font-size: 100%;
    height: 100%;
  }
}

.btn-success {
  color: #333333;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
  *background-color: #ccc;
  background-image: -moz-linear-gradient(top, #fff, #E6E6E6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#E6E6E6));
  background-image: -webkit-linear-gradient(top, #fff, #E6E6E6);
  background-image: -o-linear-gradient(top, #fff, #E6E6E6);
  background-image: linear-gradient(to bottom, #fff, #E6E6E6);
  background-repeat: repeat-x;
  border-color: #ccc #ccc #ccc;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#E6E6E6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  width:100px;
  height:12px;
  font-size:14px !important;
  line-height: 12px !important;
 text-shadow:none !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  color: #000;
  background-color: #E6E6E6;
  *background-color: #E6E6E6;
}

.btn-success:active,
.btn-success.active {
  background-color: #E6E6E6 \9;
}

#fileupload-success
{
    padding: 14px;
    margin-top: 20px;
    position: relative;
    vertical-align: middle;
    top: 7px;
}

