.uploader {

}

.uploader .upload-placeholder {
	display: none;
}
.uploader-empty .upload-placeholder {
	display: block;
	position: absolute;
	width: 100%;
	top: 70px;
	color: #aaa;
	text-align: center;
}

.uploader .upload-dropzone {
	border: 2px dashed #aaa;
	min-height: 135px;
	padding: 10px 10px 5px 10px;
}

.uploader .upload-toolbar {
	margin-top: 5px;
}

.uploader .upload-item {
	display: table;
	width: 100%;
	table-layout: fixed;
	word-wrap: break-word;
	word-break: break-all;
	margin-bottom: 5px;
}

.uploader .upload-item-row {
	display: table-row;
}


.uploader .upload-item-container {
	display: table-cell;
	width: 85px;
	height: 56px;
	vertical-align: middle;
	text-align: center;
	padding-right: 10px;
}

.uploader .upload-item-image {
	width: 75px;
}
.uploader .upload-item-container img {
	display: block;
    max-width: 75px;
    max-height: 75px;
    height: auto;
    margin: auto;
}
.uploader .upload-item-progress-bar {
	width: 0;
	height: 4px;
	line-height: 4px;
	background: #999;
}
.uploader .upload-item-uploading .upload-item-progress-bar {
}
.uploader .upload-item-complete .upload-item-progress-bar {
	width: 0 !important;
	background: #5cb85c;
}
.uploader .upload-item-error .upload-item-progress-bar {
	width: 100% !important;
	background: #d2322d;
}


.uploader .upload-item-info {
	display: table-cell;
	vertical-align: middle;

}
.uploader .upload-item-file {
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow:ellipsis;

}

.uploader .upload-item-state {
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	width: 60px;
	word-wrap: none;
	word-break: none;
}
.uploader .upload-item-status {
	display: inline-block;
	padding: 2px 4px;
	font-size: 80%;
	background: #999;
	color: #fff;
	border-radius: 2px;

}

.uploader .upload-item-uploading .upload-item-status {
	background: #999;
}
.uploader .upload-item-complete .upload-item-status {
	background: #5cb85c;
}
.uploader .upload-item-error .upload-item-status {
	background: #d2322d;
}


.uploader .upload-item-buttons {
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	width: 36px;
}
.uploader .upload-item-buttons button {
	border: none;
	background: none;
	font-size: 170%;
	font-weight: bold;
	color: #999;
}
.uploader .upload-item-buttons button:hover {
	color: #000;
	cursor: pointer;

}

