
/*----------------------------
    The file upload form
-----------------------------*/


#upload{
/*    background-color:#373a3d;
    background-image:-webkit-linear-gradient(top, #373a3d, #313437);
    background-image:-moz-linear-gradient(top, #373a3d, #313437);
    background-image:linear-gradient(top, #373a3d, #313437);*/
/*    width:250px;
    padding:30px;*/
    border-radius:3px;
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    font-family:'PT Sans Narrow', sans-serif;*/
}

#drop{
    background-color: #fff;
    padding: 40px 50px;
    margin-bottom: 0;
    border: 3px dashed #009FDA;
    border-radius: 3px;
/*    border-image: url('../img/border-image.png') 25 repeat;*/
    text-align: center;
    text-transform: uppercase;
    color:#000;
}

#drop a{
    background-color:#009FDA;
    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:#007DAC;
    text-decoration:none;
}

#drop input{
    display:none;
}

#upload ul{
    margin-top:15px;
    padding-left:0;
    list-style:none;
    /*margin:0 -30px;
    border-top:1px solid #2b2e31;
    border-bottom:1px solid #3d4043;*/
}

#upload ul li{

    background-color:#007DAC;
    border-bottom:1px solid #016C93;
    padding:15px;
    height: 80px;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 244px;
    overflow: hidden;
    white-space: nowrap;
    color: #EEE;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    left: 80px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#ccc;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 15px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 13px;
    background: url('../img/icons.png') bottom left no-repeat;
    position: absolute;
    top: 34px;
    right: 15px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}


