#fileupload .upload_btn {
	margin: 0;
}
#fileupload .message {
	font-size: .8em;
	font-style: italic;
}
#fileupload ul,
#fileupload li {
	list-style-type: none;
}
#fileupload ul {
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#fileupload li {
	float: left;
	width: 33%;
	margin: .5% .5% 0 0;
	font-size: .8em;
}
#fileupload li:nth-child(3n + 3) {
	margin: .5% 0 0 0;
}
#fileupload table {
	table-layout: fixed;
	margin: 0;
	border: none;
	background: transparent;
}
#fileupload tr {
	border-radius: 4px;
}
#fileupload td {
	margin: 0;
	padding: 7px 4px;
	border: none;
	background: transparent;
}
#fileupload .preview {
	display: none;
	width: 30px;
	text-align: center;
}
#fileupload .preview img {
	max-width: 20px;
	max-height: 20px;
	vertical-align: middle;
}
#fileupload .filename {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#fileupload .upload_prog {
	display: none;
	width: 130px;
}
#fileupload .progress {
	width: 120px;
	height: 20px;
	overflow: hidden;
	background-color: #F5F5F5;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
#fileupload .progress-bar-success {
	background-color: #5CB85C;
}
#fileupload .progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	color: #FFF;
	text-align: center;
	background-color: #428BCA;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: width .6s ease;
	transition: width .6s ease;
}
#fileupload .cancel_btns {
	width: 30px;
}
#fileupload .warning_btn,
#fileupload .cancel_btn,
#fileupload .del_btn {
	padding: 4px;
	border-radius: 4px;
	border-bottom-width: 2px;
	box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.35);
}
#fileupload .cancel_btn,
#fileupload .del_btn {
	cursor: pointer;
}
