/*
 * VERSION 2.1-SNAPSHOT
 * 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.
 */
#file-uploader {
	margin-bottom: 5px;
}
.qq-uploader {
	position: relative;
	border: 1px solid;
	border-color: #CCCCCC;
	border-radius: 2px 2px 2px 2px;
	padding: 10px;
	position: relative;
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
	margin-top: 10px;
}

form#formContact .qq-uploader {
	width: 437px;	
}
.qq-upload-button {
	display: block;
	cursor: pointer;
	/*or inline-block*/
	width: 200px;
	padding: 0px;
	padding-left: 20px;
	text-align: left;
	color: #5E97CA;
	background-image: url(/img/system/icon/add.png);
	background-position: 0px 0px;
	background-repeat: no-repeat;
}
.qq-upload-button-hover {
}
.qq-upload-button-focus {
	outline: 1px dotted #000000;
}
.qq-upload-drop-area, .qq-upload-extra-drop-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 30px;
	z-index: 2;
	background: #FF9797;
	text-align: center;
}
.qq-upload-drop-area span {
	display: block;
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -8px;
	font-size: 16px;
}
.qq-upload-extra-drop-area {
	position: relative;
	margin-top: 50px;
	font-size: 16px;
	padding-top: 30px;
	height: 20px;
	min-height: 40px;
}
.qq-upload-drop-area-active {
	background: #FF7171;
}
.qq-upload-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.qq-upload-list li {
	border: 1px solid #D0D0D0;
	border-radius: 3px 3px 3px 3px;
	margin-top: 8px;
	padding: 3px;
	list-style: outside none none;
}
.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text, .qq-upload-finished {
	margin-right: 12px;
}
.qq-upload-file {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 315px;
	margin-left: 8px;
}
.qq-upload-spinner {
	display: inline-block;
	background: url("loading.gif");
	width: 15px;
	height: 15px;
	vertical-align: text-bottom;
	left: 19px;
	margin-top: 3px;
	position: absolute;
}
.qq-upload-finished {
	display:none;
	width:15px;
	height:15px;
	vertical-align:text-bottom;
}
.qq-upload-size, .qq-upload-cancel {
	font-size: 12px;
	font-weight: normal;
}

.qq-upload-size {
	display: block;
	margin-left: 25px;
}

.qq-upload-cancel {
	background-image: url(/img/system/icon/delete.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	margin-left: 5px;
	padding-bottom: 0.5em;
	padding-left: 20px;
}

.qq-upload-failed-text {
	display: none;
}
.qq-upload-failed-icon {
	display:none;
	width:15px;
	height:15px;
	vertical-align:text-bottom;
}
.qq-upload-fail .qq-upload-failed-text {
	display: block;
	margin-left:25px;
}
.qq-upload-list li.qq-upload-success {
	background-color: #5DA30C;
	color: #FFFFFF;
}

.qq-upload-list li.qq-upload-success .qq-progress-bar {
	display:none;
}

.qq-upload-list li.qq-upload-fail {
	background-color: #D60000;
	color: #FFFFFF;
}
.qq-progress-bar {
	background: -moz-linear-gradient(top,  rgba(30,87,153,1) 0%, rgba(41,137,216,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(50%,rgba(41,137,216,1)), color-stop(51%,rgba(32,124,202,1)), color-stop(100%,rgba(125,185,232,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* W3C */
	width: 0%;
	height: 15px;
	border-radius: 6px;
	margin-bottom: 3px;
	display: none;
}
