#dragandrophandler
{
	box-sizing:border-box;
	padding:10px;
	margin:0px;
	margin-top:20%;
	float:left;
	font-size:1em;
	height:4em;
}
.progressBar {
    width: 180px;
    height: 22px;
    border: 1px solid #ddd;
    border-radius: 5px; 
    overflow: hidden;
    display:block;
    margin:0px 10px 5px 5px;
    vertical-align:top;
}
 
.progressBar div {
    height: 100%;
	 width: 200px;
    color: #fff;
    text-align: right;
    line-height: 22px; /* same as #progressBar height if we want text middle aligned */
    background-color: #0ba1b5; 
	 border-radius: 3px; 
}
.statusbar
{
    min-height:25px;
    width:95%;
	 margin:0 auto;
    padding:10px;
	 font-size:0.7em;
    vertical-align:top;
}
.statusbar:nth-child(odd){
    background:#EBEFF0;
}
.filename
{
	display:inline-block;
	vertical-align:top;
	font-size:11px;
	width:100%;
}
.filesize
{
	display:inline-block;
	vertical-align:top;
	color:#30693D;
	width:100px;
	font-size:11px;
	margin-left:10px;
	margin-right:5px;
}
.abort{
    background-color:#A8352F;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;display:inline-block;
    color:#fff;
	 font-size:0.9em;
    padding:4px 15px;
    cursor:pointer;
    vertical-align:top;
    }
