/*
Uploadify
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: #e9e9e9;
	background: -moz-linear-gradient(  top,  #e9e9e9 0%,  #d3d3d3);
	background: -webkit-gradient(  linear, left top, left bottom,  from(#e9e9e9),  to(#d3d3d3));
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #b7b7b7;
	-moz-box-shadow: 0px 1px 1px rgba(000,000,000,0.1),  inset 0px 1px 1px rgba(255,255,255,1);
	-webkit-box-shadow: 0px 1px 1px rgba(000,000,000,0.1),  inset 0px 1px 1px rgba(255,255,255,1);
	box-shadow: 0px 1px 1px rgba(000,000,000,0.1),  inset 0px 1px 1px rgba(255,255,255,1);
	text-shadow: 0px 1px 1px rgba(255,255,255,0.7),  0px 1px 0px rgba(255,255,255,0);
	color: #000;
	font-size: 12px;
	font-weight: normal;
	text-align: center;
	width: 100%;
}
.uploadify:hover .uploadify-button {
	background-color: #e9e9e9;
	background: -moz-linear-gradient(  top,  #d3d3d3 0%,  #e9e9e9);
	background: -webkit-gradient(  linear, left top, left bottom,  from(#d3d3d3),  to(#e9e9e9));
}
.uploadify-button.disabled {
	background-color: #D0D0D0;
	color: #808080;
}
.uploadify-queue {
	margin-bottom: 1em;
}
.uploadify-queue-item {
	background-color: #F5F5F5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font: 11px Verdana, Geneva, sans-serif;
	margin-top: 5px;
	max-width: 350px;
	padding: 10px;
}
.uploadify-error {
	background-color: #FDE5DD !important;
}
.uploadify-queue-item .cancel a {
	background: url('/js/uploadify-cancel.png') 0 0 no-repeat;
	float: right;
	height: 16px;
	text-indent: -9999px;
	width: 16px;
}
.uploadify-queue-item.completed {
	background-color: #E5E5E5;
}
.uploadify-progress {
	background-color: #E5E5E5;
	margin-top: 10px;
	width: 100%;
}
.uploadify-progress-bar {
	background-color: #0099FF;
	height: 3px;
	width: 1px;
}
.file {
	border: 1px solid #ccc;
	display: inline-block;
	float: left;
	height: 150px;
	margin: 0 10px 10px 0;
	width: 100px;
	position: relative;
	background: url("/images/template/aoy/file.png") center 10px no-repeat white;
	border-radius: 3px;
	box-shadow: 0 0 1px #000 inset, 0 0 1px #e0e0e0;
}
.file .caption {
	font-size: 10px;
	line-height: 12px;
	word-wrap: break-word;
	padding: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.file .caption .get, .file .caption .del {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: 5px 5px 0 0;
	background-position: center;
	background-repeat: no-repeat;
}
.file .caption .get {
	background-image: url("/images/template/aoy/download.png");
}
.file .caption .del {
	background-image: url("/images/template/aoy/delete.png");
}