/*custom upload elements*/
.customfile-input {
    position: absolute;
    height: 100px;
    cursor: pointer;
    background: transparent;
    border: 0;
    opacity: 0;
    -moz-opacity: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity = 0);
    z-index: 999;
}

.customfile {
    padding: 1px;
    color: black;
    border: 1px solid #6c92bd;
    background: white;
    width: 500px;
    cursor: pointer;
    overflow: hidden;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: relative;
}

.customfile-disabled {
    opacity: .5;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity = 0);
    cursor: default;
}

.customfile-feedback {
    display: block;
    margin: 1px 1px 1px 5px;
    font-size: 1.1em;
    color: #000000;
    font-style: italic;
    padding: .2em .2em;
}

.customfile-feedback-populated {
    color: #000000;
    font-style: normal;
    font-weight: bold;
    padding-left: 20px;
    background: left 4px no-repeat;
}

.customfile-button {
    border: 1px solid #707070;
    color: #000000;
    background: #f5f5f5;
    font-weight: bold;
    float: right;
    width: 50px;
    padding: .2em .2em;
    text-align: center;
    text-decoration: none;
    font-size: 1.1em;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.customfile-hover .customfile-button, .customfile-focus .customfile-button {
    color: #111;
    background: #e6e6e6;
    border-color: #797979;
    padding: .2em .2em;
}

.customfile-focus .customfile-button {
    outline: 1px dotted #ccc;
}