/*----------------------------
    The file upload form
-----------------------------*/


#upload{

}

#drop{
    background-color: #d0d1d2;
    padding: 20px 5px;
    margin-bottom: 30px;
    outline: 2px dotted #655b5b;
    border-radius: 3px;
    text-align: center;
    text-transform: uppercase;

    font-size:16px;
    font-weight:normal;
    color:#000;
}

#drop a{
	background:none;
    background-color:#3F3A58;
	
    padding:12px 26px;
    color:#fff;
     font-size:16px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
}

#drop a:hover{
    background-color:#544887;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0 -30px;
    border-top:0px solid #2b2e31;
    border-bottom:0px solid #3d4043;
}

#upload ul li{

    background-color:#3F3A58;



    border-top:0px solid #3F3A58;
    border-bottom:0px solid #3F3A58;
   /* padding:15px;*/
    height: 75px;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    /*width: 144px;*/
    overflow: hidden;
    white-space: nowrap;
    color: #EEE;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    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.action{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

#upload ul li.working span.action{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}


