/*
Uploadify v3.1.0
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
.uploadify {
	position: relative;
	float: right;
}
.uploadify-button {
	background-color: #505050;
	background-image: linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -o-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -moz-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -webkit-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -ms-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, #505050),
		color-stop(1, #707070)
	);
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	width: 100%;
}
.uploadify:hover .uploadify-button {
	background-color: #606060;
	background-image: linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -o-linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -moz-linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -webkit-linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -ms-linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, #606060),
		color-stop(1, #808080)
	);
	background-position: center bottom;
}
.uploadify-button.disabled {
	background-color: #D0D0D0;
	color: #808080;
}

.uploadify-queue-item {
	background-color: #F7F7F7;
	border-top: 1px solid #D5D5D5;
	margin-top: -1px;
	font: 12px Arial, Helvetica, sans-serif;
	padding: 12px 10px;
	/* gradient */
	background: -moz-linear-gradient(top, #FFFFFF 0%, #F7F7F7 99%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(99%,#F7F7F7)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#F7F7F7',GradientType=0 ); /* ie */
}
.uploadify-queue-item:first-child {
	border-top-color: #BBB;
}
	.uploadify-queue-item span.percentage {
		color: #999;
		margin-left: 5px;
	}
	
	.uploadify-queue-item .status {
		float: right;
		position: relative;
		top: 2px;
	}
		.uploadify-queue-item span.completed, .uploadify-queue-item .status a {
			display: block;
			width: 11px;
			height: 11px;
			background: url(./theme-img/completed-ico.gif) no-repeat;
		}
			.uploadify-queue-item .status a {
				display: block;
				background: url(./theme-img/cancel-ico.gif) no-repeat;
			}

.uploadify-progress {
	background-color: #E5E5E5;
	margin-top: 5px;
	width: 100%;
}
.uploadify-progress-bar {
	background-color: #4FA2DF;
	height: 3px;
	width: 1px;
}

.completed {
	background-color: #F5F5F5;
}

.uploadify-error {
	position: relative;
}
	.uploadify-error .status {
		display: none;
	}
	.uploadify-error span.error_txt {
		color: #C60000;
		position: absolute;
		right: 10px;
		top: 12px;
	}