@CHARSET "ISO-8859-1";

.dragandrophandler {
	border: 2px dotted #0B85A1;
	/*float: left;
	width: 140px;
	height: 150px;*/
	color: #92AAB0;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	padding: 10px 10px 0px 10px;
	font-size: 1.2rem;
}

.progressBar {
	width: 70px;
	height: 22px;
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
	display: inline-block;
	margin: 0px 10px 5px 5px;
	vertical-align: top;
}

.progressBar div {
	height: 100%;
	color: #fff;
	text-align: right;
	line-height: 22px;
	/* same as #progressBar height if we want text middle aligned */
	width: 0;
	background-color: #0ba1b5;
	border-radius: 3px;
}

.statusbar {
	border: 1px solid #A9CCD1;
	float: left;
	min-height: 25px;
	width: 90%;
	padding: 10px 10px 10px 10px;
	vertical-align: top;
}

.statusbar:nth-child(odd) {
	background: #EBEFF0;
}

.previewDiv img {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	cursor: pointer;
}

.filename {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	text-overflow: ellipsis;
	width: 100px;
	height: 20px;
}

.filesize {
	display: none;
	vertical-align: top;
	color: #30693D;
	width: 100px;
	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-family: arial;
	font-size: 13px;
	font-weight: normal;
	padding: 4px 15px;
	cursor: pointer;
	vertical-align: top
}

.previewDiv img:hover {
	opacity: 0.5;
}