/*----------------------------
    The file upload form
-----------------------------*/


#upload{

}

#drop{
    background-color: rgba(255,255,255,0.4);
    padding: 40px 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.7);
    
    /*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.find{
    background-color: #A9C811;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
}
#drop a.boton{
    margin: -9px -5px 0 7px;
    padding: 10px;
    
}

#drop a.find:hover{
    background-color:#0986a3;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0 -30px;
    border-top:1px solid white;
    border-bottom:1px solid white;
}

#upload ul li{
    background-color: rgba(255,255,255,0.5);
    border-top:1px solid white;
    border-bottom:1px solid white;
    min-height: 17px;
    height: auto;
    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 70%;
    overflow: hidden;
    white-space: nowrap;
    color: #666;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    text-align:right;
    top: 2px;
    right: 45px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

#upload ul li canvas{
    top: 5px;
    left: 10px;
    position: absolute;
    width: 20px;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}