/*----------------------------
    The file upload form
-----------------------------*/
#upload{
}

#drop{
    background-color: #e5e4e4;
    padding: 40px 50px;
    margin-bottom: 30px;
    border: 2px dashed rgba(208, 208, 208, 1);
    border-radius: 3px;
    text-align: center;
    text-transform: uppercase;
    font-size:16px;
    color:#7f858a;
	position:relative;
}

#drop a {
    background-color:#f37022;
    padding:12px 26px;
    color:#fff;
    font:14px/14px 'Uni-Sans-Book', sans-serif;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease;
	outline:none;
	border:0;

}

#drop a:hover {
    background-color:#161616;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease;
}

#drop input {
	display: block;
	opacity: 0;
	cursor:pointer;
}

#upload ul{
    list-style:none;
    margin:0 0px;
}

#upload ul li{

    background-color:#f37022;

    border-top:none;
    border-bottom:none;
    padding:15px;
    height: 52px;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 230px;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

@media (max-width:530px) {
	#upload ul li p{
		width: 130px;		
	}

}


#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#f8b892;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    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.error p{
    color:red;
}