/*
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;
	margin-bottom: 1em;
}
.uploadify-button {
	
  background-color: #f4f4f4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#ECECEC));
  background-image: -webkit-linear-gradient(top, #f4f4f4, #ECECEC);
  background-image:    -moz-linear-gradient(top, #f4f4f4, #ECECEC);
  background-image:     -ms-linear-gradient(top, #f4f4f4, #ECECEC);
  background-image:      -o-linear-gradient(top, #f4f4f4, #ECECEC);
  background-image:         linear-gradient(to bottom, #f4f4f4, #ECECEC);

	background-position: center top;
	background-repeat: no-repeat;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #ccc;
	color: #333;
	font:12px Arial, Helvetica, sans-serif;
	text-align: center;
	text-shadow: 0 -1px 0 rgba(255,255,255,0.25);
	width: 100%;
}
.uploadify:hover .uploadify-button {
	
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f4f4f4));
  background-image: -webkit-linear-gradient(top, #ffffff, #f4f4f4);
  background-image:    -moz-linear-gradient(top, #ffffff, #f4f4f4);
  background-image:     -ms-linear-gradient(top, #ffffff, #f4f4f4);
  background-image:      -o-linear-gradient(top, #ffffff, #f4f4f4);
  background-image:         linear-gradient(to bottom, #ffffff, #f4f4f4);

	background-position: center bottom;
}
.uploadify-button.disabled {
	background-color: #D0D0D0;
	color: #808080;
}
.uploadify-queue {
	clear:both;
	overflow:hidden;
}
.uploadify-queue-item {
	background-color: #FaFaFa;
	padding: 0 25px 5px 5px;
	border:1px solid #ddd;
	white-space:nowrap;
	float: left;
	margin-right: 10px;
	margin-bottom:5px;
}
.uploadify-error {
	background-color: #FDE5DD !important;
}
.uploadify-queue-item .cancel a {
	background: url('.uploadify-cancel.png') 0 0 no-repeat;
	float: right;
	height:	16px;
	text-indent: -9999px;
	width: 16px;
	margin-top: 8px;
	margin-right:-20px;
}
.uploadify-queue-item.completed {
	background-color: #E5E5E5;
}
.uploadify-progress {
	background-color: #E5E5E5;
	width: 100%;
}
.uploadify-progress-bar {
	background-color: #693;
	height: 3px;
	width: 1px;
}