

/*----------------------------
    The file upload form
-----------------------------*/


.drop{
	overflow:auto;
	height:200px;
	width:300px;
    background-color: none;
    padding: 40px 50px;
    margin-bottom: 30px;
    border: 1px solid #7f858a;
    border-style: dotted;
    border-radius: 3px;
    border-image: url('../img/border-image.png') 25 repeat;
    text-align: center;

    font-size:16px;
    font-weight:bold;
    color:#7f858a;
}

.drop input{
    display:none;
}

.upload ul{
    list-style:none;
    margin:0 -30px;
}

.upload ul li{
	text-transform: uppercase;
	font-family:'PT Sans Narrow', sans-serif;
    background-color:#373a3d;

    background-image:-webkit-linear-gradient(top, #EAEAEA, #DEDEDE);
    background-image:-moz-linear-gradient(top, #EAEAEA, #DEDEDE);
    background-image:linear-gradient(top, #EAEAEA, #DEDEDE);
	
    padding:15px;
    height: 20px;

    position: relative;
}

.upload ul li input{
    display: none;
}

.upload ul li p{
    width: 200px;
    overflow: hidden;
    white-space: nowrap;
    color: black;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 100px;
}

.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('../../figuras/multipleupload/icons.png') no-repeat;
    position: absolute;
    top: 20px;
    right: 33px;
    cursor:pointer;
}

.upload ul li.working span {
    height: 16px;
    background-position: 0 -12px;
}

.upload ul li.error p {
    color:red;
}


