

/*----------------------------
    The file upload form
-----------------------------*/


#upload{
    
    background-color:#ccc;

    /*background-image:-webkit-linear-gradient(top, #373a3d, #313437);
    background-image:-moz-linear-gradient(top, #373a3d, #313437);
    background-image:linear-gradient(top, #373a3d, #313437);*/

    width:400px;
	max-width:80%;
    padding:30px;
    /*border-radius:3px;*/

    margin:100px auto 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#drop{
    /*background-color: #2E3134;*/
    padding: 40px 50px;
    margin-bottom: 30px;
    border: 20px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    /*border-image: url('../img/border-image.png') 25 repeat;*/
    text-align: center;
    /*text-transform: uppercase;*/
	border:3px dashed #068ad4;
    font-size:16px;
    font-weight:bold;
    color:#000;
}

#drop a  {background-color:#068ad4;color:#fff;padding:5px 10px;cursor:pointer;}

#drop a:hover{color:#000}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0 -30px;
    border-top:1px solid #068ad4;
    border-bottom:1px solid #068ad4;
}

#upload ul li{


    border-top:1px solid #068ad4;
    border-bottom:1px solid #068ad4;
    padding:15px;
    height: 52px;
	margin-left:-40px;
    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 250px;
	max-width:40%;
    overflow: hidden;
    white-space: nowrap;
    color: #068ad4;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    left: 100px;
	margin-top:0px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#068ad4;
    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;
}
#upload ul li.error span{ height: 16px; background-position: 0 -13px; }


