
/*----------------------------
    The file upload form
-----------------------------*/


#ajaxUpload{
    background-color:#d9d9d9;

    padding:30px;
    border-radius:3px;
    margin-bottom: 30px;
}


#ajaxDrop{
    background-color: #d9d9d9;
    padding: 40px 50px;

    text-align: center;
    text-transform: uppercase;

    font-size:16px;
    font-weight:bold;
    color:#7f858a;
    
    border: 5px solid silver;
    border-style: dashed;
}

#ajaxDrop a{
    background-color:#007a96;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    line-height:1;
}

#ajaxDrop a:hover{
    background-color:#0986a3;
}

#ajaxDrop input{
    display:none;
}

#ajaxUpload ul{
    list-style:none;
    margin:0 -30px;
    margin-top: 30px
}

#ajaxUpload ul li{

    background-color:#333639;

    border-top:1px solid #3d4043;
    border-bottom:1px solid #2b2e31;
    padding:15px;
    height: 80px;

    position: relative;
}

#ajaxUpload ul li input{
    display: none;
}

#ajaxUpload ul li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: #EEE;
    font-size: 1em;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

#ajaxUpload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

#ajaxUpload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

#ajaxUpload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

#ajaxUpload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#ajaxUpload ul li.error p{
    color:red;
}