@charset "UTF-8";

#upload{
    font-family:'PT Sans Narrow', sans-serif;
    background-color:#F4F4F4;

    /*background-image:-webkit-linear-gradient(top, #373a3d, #313437);
    background-image:-moz-linear-gradient(top, #373a3d, #313437);
    background-image:linear-gradient(top, #373a3d, #313437);*/

    width:80%;
    padding:30px;
    border-radius:3px;

    margin:30px auto;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);*/
    color: #fff;
    font-style: italic;
}

#drop{
    background-color: #DEDEDE;
    padding: 40px 50px;
    margin-bottom: 30px;
   /* border: 20px solid rgba(0, 0, 0, 0);*/
    border-radius: 3px;
    /*border-image: url('../images/estructura/border-image.png') 25 repeat;*/
    text-align: center;
    text-transform: uppercase;

    font-size:16px;
    font-weight:bold;
    color:#7f858a;
}

#drop a{
    background-color:#2fa4e7;
    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:#0986a3;
}

#drop input{
    display:none;
}
#upload .clear{
    clear: both;
}
#upload ul{
    list-style:none;
    margin:0 -30px;
    border-top:1px solid #CCC;
    border-bottom:1px solid #CCC;
}

#upload ul li{

    background-color:#F4F4F4;

   /* background-image:-webkit-linear-gradient(top, #333639, #303335);
    background-image:-moz-linear-gradient(top, #333639, #303335);
    background-image:linear-gradient(top, #333639, #303335);*/

    border-top:1px solid #F4F4F4;
    border-bottom:1px solid #F4F4F4;
    padding:15px;
    height: 100px;

    position: relative;
    display: block;
    float: left;
    width: 20%;
	margin-bottom:20px;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: #787878;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: 55px;
    left: 15px;
}
#upload ul li p img{
	height: 80px;
	width: auto;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../images/estructura/icons.png') no-repeat;
    position: absolute;
    top: 10px;
    right: 73px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}

