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


.upload {
    
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);*/
	margin:0 0 10px 0;
}

.drop {
    
    padding:0;
    margin: 0px;
    
    /*border-image: url('../img/fileupload/border-image.png') 25 repeat;*/
     
    color:#444444;
}

.drop:hover { /*background:#eeeeee;*/ }

.drop input{
    display:none;
}

.upload ul{
    list-style:none;
    margin:0 0 20px 0;
    /*border-top:1px solid #444444;
    border-bottom:1px solid #444444;*/
}

.upload ul li{

    border:1px solid #ffffff;
	border-radius:5px;
    padding:15px;
    height: 52px;
	width:300px;
    position: relative;
}

.upload ul li input{
    display: none;
}

.upload ul li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: #444444;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    left: 100px;
}

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

.upload ul li canvas{
    top: 20px;
    left: 32px;
    position: absolute;
}

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

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

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

