/*----------------------------
    The file upload form
-----------------------------*/


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

   /* 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;
    
    border-radius:3px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#drop{
    margin-bottom: 10px;
    border-radius: 3px;
    text-align: left;
    text-transform: uppercase;
    font-size:16px;
    font-weight:bold;
    color:#7f858a;
}

#drop a{
    background-color:#F44D4D;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
	width:250px;
	text-align:center;
}

#drop a:hover{
    background-color:#F43D40;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
   /* margin:0 -30px;
    border-top:1px solid #2b2e31;
    border-bottom:1px solid #3d4043;*/
}

#upload ul li{
	/*
    background-color:#333639;
    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 #3d4043;
    border-bottom:1px solid #2b2e31;*/
	color:#333639;
	padding:25px 5px 5px 5px;
    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    overflow: hidden;
    white-space: nowrap; 
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 2px;
	width:98%;
	text-align:left;
}
#upload ul li p .file-name
{
	border-right:1px #ddd dashed;
	width:70%;
	display:inline-block;
}
#upload ul li .file-size{
    font-weight: normal;
    font-style:normal;
    display:inline-block;
	font-size:10px;
	text-align:right;
	border-right:1px #ddd dashed;
	padding:0px 2px 0px 2px;
	width:50px;
}



#upload ul li span{
    width: 15px;
    height: 12px; 
    position: absolute;
    top: 3px;
	right:2px;
    cursor:pointer;
	color:red;
}

/*
#upload ul li canvas{
    top: 5px;
    left: 2px;
    position: absolute;
}

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

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

 