/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/

.uploadify {
    position: relative;
    margin-bottom: 1em;
}

.uploadify-button {
    background-color: #e7eaeb;
    border-radius: 1px;
    color: #333;
    text-align: center;
    transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    width: 100%;
}

.uploadify:hover .uploadify-button {
    background-color: #ddd;
}

.uploadify-button.disabled {
    background-color: #999;
    color: #ccc;
}

.uploadify-queue-item {
    background-color: #e7eaeb;
    border-radius: 1px;
    font-size: 13px;
    line-height: 16px;
    margin-top: 3px;
    padding: 15px;
}

.uploadify-error {
    background-color: #f20000 !important;
}

.uploadify-queue-item .cancel a {
    background: url('../uploadify/uploadify-cancel.png') center no-repeat;
    float: right;
    height: 16px;
    text-indent: -9999px;
    width: 16px;
}

.uploadify-queue-item.completed {
    background-color: #69b72f;
    color: #fff;
}

.uploadify-progress {
    margin-top: 10px;
    width: 100%;
}

.uploadify-progress-bar {
    background-color: #69b72f;
    height: 3px;
    width: 0px;
}
