
.input_wrapper
{
/*	position: relative;*/
	/*float: left;*/
	width: 100%;
	margin: 15px 0px;
}

label
{
	/*position: relative;*/
	/*float: left;*/
	width: 100%;
	font-style: italic;
	font-size: 12px;
}

/*----------------------------
    The file upload form
-----------------------------*/

.drop_zone{
	/*position : relative;*/
	/*float : left;*/
    background-color: rgb(238, 238, 238);    
    padding: 10px 0px;
    border: 1px solid rgb(204, 204, 204);
    width: 100%;
    border-radius : 5px;
    text-align: center;
	font-size:14px;
    font-weight:bold;
    color:#FFFFFF;
    text-transform: uppercase;
}

.drop_zone a{
    background-color:#24468E;
    padding:10px 15px;
    color:#fff;
    font-size:14px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
}

.drop_zone a:hover{
    /*background-color:#242D4E;*/
    /*box-shadow: 0px 0px 5px #242D4E;*/
}

.drop_label
{
    text-align: center;
	/*position: relative;*/
	/*float: left;*/
	width: 100%;
	text-align: center;
	font-size:14px;
    font-weight:bold;
    color:#FFFFFF;
    text-transform: uppercase;
}

.drop_zone input{
    display:none;
}

.files_list{
	/*position : relative;*/
	/*float : left;*/
	width: 100%;
	height : 80px;
	margin-top : 5px;
	overflow-y : auto;
	overflow-x : hidden;
    list-style:none;
    border-radius: 5px;
}

.files_list 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:15px;
    height: 50px;

    position: relative;
    /*float : left;*/
    width: 270px;
}

.files_list li input{
    display: none;
}

.files_list li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: green;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

.files_list li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}
.files_list li canvas{
    top: 15px;
    left: 0px;
    /*position: absolute;*/
}

.files_list li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 54px;
    right: 100px;
    cursor:pointer;
}

.files_list li.working span{
    height: 16px;
    background-position: 0 -12px;
}

.files_list li.error p{
    color:red;
}