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

#upload{
	background-color: #DCDCDC;
	/*background-image: -webkit-linear-gradient(top, #373a3d, #313437);
	background-image: -moz-linear-gradient(top, #373a3d, #313437);
	background-image: linear-gradient(top, #373a3d, #313437);*/
	width: 300px;
	padding: 3px;
	border-radius: 3px;
	margin: 0px auto 0px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#drop{
	background-color: #CCCCCC;
	padding: 20px 25px;
	margin-bottom: 15px;
	border: 10px solid rgba(0, 0, 0, 0);
	border-radius: 3px;
	/*border-image: url('../img/border-image.png') 25 repeat;*/
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
	color: Gray;
}

#drop a{
	background-color: #707070;
	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:#707070;
}

#drop input{
    display:none;
}

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

#upload ul li{

    background-color:#DCDCDC;

    /*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 Gray;
    border-bottom:1px solid Gray;
    padding:15px;
    height: 52px;
	 width: 250px;
    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 160px;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 70px;
}

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

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

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

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

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