/*----------------------------
    The file upload form
-----------------------------*/


#upload{
    font-family: 'Euro Bold Ext Two', sans-serif; font-weight: bold;	
    background-color:#343434;
    background-image:-webkit-linear-gradient(top, #343434, #212121);
    background-image:-moz-linear-gradient(top, #343434, #212121);
    background-image:linear-gradient(top, #343434, #212121);
    width:300px; padding:30px;
    border-radius:12px; border: 2px dotted #333333;
    margin: 200px auto 100px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

#drop{
    background-color: #540101;
    padding: 40px 20px 20px 20px;
    margin-bottom: 30px;
    border: 2px solid #be1313;
	box-shadow:0 0 25px #000 inset;
    border-radius: 17px; border-style: 2px solid #be1313;
    background-image:-webkit-linear-gradient(top, #7f0202, #540101);
    background-image:-moz-linear-gradient(top, #7f0202, #540101);
    background-image:linear-gradient(top, #7f0202, #540101);
     
    font-size: 16px; font-weight:bold; color:#FFF; text-align: center; text-transform: uppercase;
}

#drop a{
    background-color: #960000;
    padding: 8px 20px;
    font-size: 10px; font-weight: normal; color: #fff;
    border-radius: 6px; border: 2px dotted #be1313;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    line-height: 1;
}

#drop a:hover{
    background-color: #c10000;
}

#drop input{
    display: none;
}

#upload ul{
    list-style: none;
    margin: 0 -30px;
    border-top:1px solid #333333;
    border-bottom:1px solid #141414;
}

#upload ul li{
    background-color: #343434;
    background-image:-webkit-linear-gradient(top, #343434, #212121);
    background-image:-moz-linear-gradient(top, #343434, #212121);
    background-image:linear-gradient(top, #343434, #212121);
    border-top:1px solid #141414;
    border-bottom:1px solid #333333;
    position: relative; padding:10px 0px 10px 0px; margin:0 -40px; height: 70px; width:296px;  
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 150px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 10px; line-height: 20px; font-weight: bold; color: #EEE;
    position: absolute;
    top: 14px; left: 100px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal; 
    color:#fff;
    display:block;
}

#upload ul li canvas{
    top: 10px;
    left: 30px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 15px;
    background: url('../img/opics/icons.png') no-repeat;
    position: absolute;
    top: 15px;
    right: 33px;
    cursor: pointer;
}

#upload ul li.working span{
    height: 15px;
    background-position: 0 -15px;
}

#upload ul li.error p{
    color:red;
}
