/*----------------------------
    The file upload form
-----------------------------*/


#upload{
    width:150px;
    padding:20px;
    border-radius:3px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#drop{
    padding: 0;
    border: 20px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    border-image: url('../img/border-image.png') 25 repeat;
    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;
    margin-left: -5px;
    line-height:1;
}

#drop a:hover{
    background-color:#0986a3;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0;
    padding: 0;
}

#upload ul li{

    left: -20px;
    padding: 15px 0;
    min-height: 20px;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    color: #333;
    font-size: 12px;
    font-weight: bold;
    left: 10px;
    overflow: hidden;
    position: absolute;
    top: 20px;
    word-wrap: break-word;
    width: 144px;
    margin: 0;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
    display: none;
}

#upload ul li span{
    background: url("../img/icons.png") no-repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 12px;
    position: absolute;
    right: -25px;
    top: 22px;
    width: 15px;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}
