/*-------------------------
    Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}

/*----------------------------
    The file upload form
-----------------------------*/


#upload{ 
    font-family:'PT Sans Narrow', sans-serif;
    background-color:#FFFFFF;
    width:60%;
    padding:10px;
    margin:50px auto 100px;
}

#drop{
    background-color: #E6E6E6;
    padding: 50px 50px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;

    font-size:16px;
    font-weight:bold;
    color:#7f858a;
}

#drop a{
    background-color:#007a96;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    /*border-radius:2px;*/
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
}

#drop a:hover{
    background-color:#0986a3;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    /*margin:0 -30px;*/
    margin:50px auto 100px;
    border-top:1px solid #2b2e31;
    border-bottom:1px solid #3d4043;
}

#upload ul li{

    background-color:#F2F2F2;
    border-bottom:1px solid #3d4043;
    padding:15px;
    height: 80px;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 70%;
    overflow: hidden;
    white-space: nowrap;
    color: #2E2E2E;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../../img/uploader_files/icons.png') no-repeat;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}
