/*
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 {
        border: 1px solid #CCC;
        border-bottom-color: #AAA;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=white,EndColorStr=#E0E0E0);
        background-image: -moz-linear-gradient(top,white 0,#E0E0E0 100%);
        background-image: -ms-linear-gradient(top,white 0,#E0E0E0 100%);
        background-image: -o-linear-gradient(top,white 0,#E0E0E0 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,white),color-stop(100%,#E0E0E0));
        background-image: -webkit-linear-gradient(top,white 0,#E0E0E0 100%);
        background-image: linear-gradient(to bottom,white 0,#E0E0E0 100%);
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;

        -moz-box-shadow: inset 0 0 1px white;
        -ms-box-shadow: inset 0 0 1px white;
        -o-box-shadow: inset 0 0 1px white;
        -webkit-box-shadow: inset 0 0 1px white;
        box-shadow: inset 0 0 1px white;
        -moz-transition: all 0.218s;
        -ms-transition: all 0.218s;
        -o-transtion: all 0.218s;
        -webkit-transition: all 0.218s;
        transition: all 0.218s;
	
	color: #555;
	font: 13px Arial, Helvetica, sans-serif;
	text-align: center;
	width: 100%;
}
.uploadify:hover .uploadify-button {
        border-color:#bbb;
        color: #555;
        background:#f3f3f3;
        background-image:-moz-linear-gradient(top,#ffffff,#ebebeb);
        background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#ebebeb));
        filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr=#ffffff,endColorStr=#ebebeb);
        outline:0;
        -moz-box-shadow:0 0 3px #bbb;
        -webkit-box-shadow:0 0 3px #bbb;
        box-shadow:0 0 3px #bbb;
}
.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('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;
}