/*
 * VERSION 2.0
 * Original version: 1.0 © 2010 Andrew Valums ( andrew(at)valums.com )
 * Current Maintainer (2.0+): 2012, Ray Nicholus ( fineuploader(at)garstasio.com )
 *
 * Licensed under MIT license, GNU GPL 2 or later, GNU LGPL 2 or later, see license.txt.
 */
.qq-uploader {
	width: 7em;
/* 	position: relative; */
/* 	width: 150px; */
}
.qq-upload-button {
	display: block;
	/*or inline-block*/
/* 	width: 105px; */
/* 	padding: 7px 0; */
/* 	text-align: center; */
/* 	background: #880000; */
/* 	border-bottom: 1px solid #DDD; */
	color: blue;
	text-decoration: underline;
	float: left;
}
.qq-upload-button-hover {
/* 	background: #CC0000; */
}
.qq-upload-button-focus {
/* 	outline: 1px dotted #000000; */
}
/* .qq-upload-list { */
/* 	display: block; */
/* 	float: right; */
/* 	vertical-align: middle; */
/* 	margin-top: 0px; */
/* 	padding-left: 0px; */
/* 	padding-top: 0px; */
/* } */

/* .qq-upload-spinner { */
/* 	display: inline-block; */
/* 	background: url("/static/img/in_progress.gif"); */
/* 	width: 32px; */
/* 	height: 32px; */
/* } */
/* .qq-upload-success { */
/* 	display: inline-block; */
/*     width:32px; */
/*     height:32px; */
/*     background-image:url('/static/img/ok.png'); */
/* } */

/* .qq-upload-fail { */
/* 	display: inline-block; */
/*     width:32px; */
/*     height:32px; */
/*     background-image:url('/static/img/fail.png'); */
/* } */

.qq-upload-file, .qq-upload-size, .qq-upload-failed-text,
.qq-upload-success,
.qq-upload-fail,
.qq-upload-spinner,
.qq-upload-list
 {
	display: none !important;
}


.upload_status_box {
	width: 32px;
	height: 32px;
	background-position: center;
	background-repeat: no-repeat;
}

.upload_ok {
	background-image: url(/static/img/ok.png);
}

.upload_fail {
	background-image: url(/static/img/fail.png);
}

.upload_in_progress {
	background-image: url(/static/img/in_progress.gif);
}
