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

#upload{
    padding: 10px;
}

/*
#upload input{
    display:none;
}
*/

#upload #email input {
    display:block;
}

#upload ul{
    list-style:none;
    margin:10px 0px;
}

#upload ul li{
    border-bottom: 1px solid #afafaf;
    padding:15px;
    min-height: 82px;
    position: relative;
}

#myinput {
    display: none;
}

#upload ul li p{
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    font-weight: bold;
}

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

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

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/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 span:hover {
    background-position: 0 -12px;
}

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

#droparea {
    padding-left: 3em;
}

#drop{
    background-color: #fff;
    margin-bottom: 30px;
    border: 1px solid #ededed;
    border-radius: 4px;

    padding:10px 0;

    font-size:16px;
    color:#aaa;
}