/*
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: -webkit-linear-gradient(top, rgb(230,230,230) , rgb(211,211,211)); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(bottom, rgb(230,230,230), rgb(211,211,211)); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(bottom, rgb(230,230,230), rgb(211,211,211)); /* For Firefox 3.6 to 15 */
	background: linear-gradient(to bottom, rgb(230,230,230) , rgb(211,211,211)); /* Standard syntax */
	border:1px solid rgb(211,211,211);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: rgb(21,40,53); 
	text-decoration: none; 
	cursor: pointer;
	float: left;
	padding: 10px 10px 10px 10px;
	margin-bottom: 5px;
	width: 87%;
	text-align: center;
}
.uploadify:hover .uploadify-button {
	background: -webkit-linear-gradient(top, rgb(28,52,69), rgb(21,40,53)); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(bottom, rgb(28,52,69), rgb(21,40,53)); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(bottom, rgb(28,52,69), rgb(21,40,53)); /* For Firefox 3.6 to 15 */
	background: linear-gradient(to bottom, rgb(28,52,69), rgb(21,40,53)); /* Standard syntax */
	border:1px solid rgb(21,40,53);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: rgb(255,255,255); 
	text-decoration: none; 
	cursor: pointer;
	float: left;
	padding: 10px 10px 10px 10px;
	margin-bottom: 5px;
	width: 87%;
	text-align: center;
}
.uploadify-button.disabled {
	background-color: #D0D0D0;
	color: #808080;
}
.uploadify-queue {
	margin-bottom: 1em;
	float: left;
	width: 565px;
}
.uploadify-queue-item {
	background-color: #EEEEEE;
	-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('../img/admin/icone/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: #52ba57;
	height: 3px;
	width: 1px;
}