/**
 * File Upload Unit
 */
.fuu {
	overflow-x: visible;
	overflow-y: auto;
	padding: .3em;
}

.fuu_obj {
	margin-bottom: .3em;
}

.fuu input {
	width: 100%;
	cursor: pointer;
}

.fuu_obj * {
	height: 1.2em;
	line-height: 1.2em;
	display: inline-block;
	padding: 0;
	margin: 0;
}

.fuu_remove_btn {
	cursor: pointer;
	float: right;
}

.fuu_preview {
	position: fixed;
	top: 150px;
	left: 10px;
	max-width: 50%;
	max-height: 50%;
	z-index: 44;
}

.fuu_preview img {
	max-width: 100%;
	max-height: 100%;
}

/**
 * File Upload Tasks
 */
#futroot {
	max-height: 200px;
	padding-right: 20px;
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	bottom: 2em;
	right: 1em;
	z-index: 9999;
	background-color: white;
}

.fut {
	width: 400px;
	border: solid 1px gray;
	margin: 0.5em;
	padding: 0.5em;
	background-color: white;
}

.fut * {
	height: 1.5em;
	line-height: 1.5em;
	display: inline-block;
	padding: 0;
	margin: 0;
}

.fut_name {
	top: 0;
	left: 0;
	white-space: nowrap;
}

.fut_barholder {
	height: 5px;
	line-height: 5px;
	width: 100%;
	background-color: #ccc;
}

.fut_bar {
	height: 5px;
	background-color: #3d3;
}

.fut_status {
	float: right;
}

.fut_btn {
	float: right;
	width: 1.5em;
	text-align: center;
	cursor: pointer;
	margin-left: 0.5em;
}

.fut_ok .fut_status {
	color: green;
}

.fut_err .fut_status {
	color: red;
}

.fut_btn_retry {
	color: #fc9;
}

.fut_btn_cancel {
	color: red;
}