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


#upload{
    margin: 3% auto 3% auto;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	table-layout: auto;
	border-collapse: collapse;
	border-left-style:hidden;
	border-right-style:hidden; !important;
	border-bottom-style:hidden;  
	border-top-style:hidden;

}

#drop{
    background-color: #cbdf59;
    border: 20px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    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;
    line-height:1;
}

#drop a:hover{
    background-color:#0986a3;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0 -30px;
    border-top:1px solid #2b2e31;
    border-bottom:1px solid #3d4043;
}

#upload ul li{

    /*border-top:1px solid #3d4043;
    border-bottom:1px solid #2b2e31;*/
    padding:15px;
    height: auto;
    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
	display:inline;
	margin-left:5%;
	martin-top:auto;
    top: 20px;
    left: 100px;
}

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



#upload ul li span{
    width: 15px;
    height: 12px;   
    /*background: url('http://products.iisartonline.org/mini-upload-form/assets/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.error p{
    color:red;
}