

/*----------------------------
    The file upload form
-----------------------------*/


#upload{
	font-family: 'Open Sans Condensed', sans-serif;
    /* background-color:#373a3d; */

   /* background-image:-webkit-linear-gradient(top, #373a3d, #313437);
    background-image:-moz-linear-gradient(top, #373a3d, #313437);
    background-image:linear-gradient(top, #373a3d, #313437); */

    width: 100%;
    padding: 10px;    	
	margin-top: 20px;	

    /* margin:200px auto 100px; */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);*/
}

#upload-path-header{
	padding-left: 30px;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #000;
	font-size:16px;
	text-align: center;
}

#upload-path-header span{
	color: #1E5A17;
    font-weight:bold;
}


#drop{
    background-color: #eee;
    padding: 40px 50px;
    margin-bottom: 30px;
    border: 3px dashed #1E5A17;
    border-radius: 3px;
    /* border-image: url('../gfx/border-image.png') 25 repeat; */
    text-align: center;
	vertical-align: middle;
    text-transform: uppercase;

    font-size:16px;
    font-weight:bold;
    color: #1E5A17;
}

#drop a{
    background-color:#1E5A17;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
	text-align: center;
	vertical-align: middle;
    line-height:1;
}

#drop a:hover{
    background: #37A82A;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0 -30px;
	padding-left: 0;
/*    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;
	*/
    padding-top:15px;
	padding-bottom:15px;
    height: 52px;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#6E6E6E;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../gfx/icons.png') no-repeat;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error {
	text-align: left;
	margin: 0px;
	padding: 0px;
    color:red;
	font-size: 12px;
	font-weight: normal;
	left: 0px;
	background: #d00;
	border-radius: 2px;
	border: 2px solid #f00;
}

#upload ul li.error p{
	white-space: normal;
	text-align: left;
	width: 85%;
    color: #fff;
	font-size: 14px;
	font-weight: normal;
	padding: 0px;
	margin: 0px;
	top: 6px;
	left: 10px;
}

#upload ul li.error span{
    width: 24px;
    height: 24px;
    background: url('../gfx/Cancel.png') no-repeat;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor:pointer;
}

