﻿
/*----------------------------
    The file upload form
-----------------------------*/


#upload {
}

.drop {
}

    .drop a {
        cursor: pointer;
        display: inline-block;
    }

        .drop a:hover {
        }

    .drop input {
        display: none;
    }

.status ul {
    list-style: none;
    margin: 0;
    margin-top: 4px;
}

    .status ul li {
        padding-top: 4px;
        padding-bottom: 4px;
        height: 38px;
        position: relative;
    }

        .status ul li input {
            display: none;
        }

        .status ul li p {
            color: #434242;
            overflow: hidden;
            white-space: nowrap;
            font-weight: bold;
            position: absolute;
            left: 44px;
        }

        .status ul li i {
            color: #747474;
            font-size: 11px;
            font-weight: normal;
            font-style: normal;
            display: block;
        }

        .status ul li canvas {
            top: 12px;
            left: 8px;
            position: absolute;
        }

        .status ul li span {
            width: 15px;
            height: 12px;
            background: url('/images/fileupload/icons.png') no-repeat;
            position: absolute;
            top: 12px;
            right: 8px;
            cursor: pointer;
        }

        .status ul li.working span {
            height: 16px;
            background-position: 0 -12px;
        }

        .status ul li.error p {
            color: #c0c0c0;
            font-weight: normal !important;
        }
