/*
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 {
    position:relative;
    line-height:12px;
    float:left;
    font: 12px/12px 'OpenSansRegular', Arial, sans-serif;
    display:block;
    height:20px;
    cursor: pointer;
    padding:0 5px 0 5px;
    margin: 0 5px 0 0;
    color:#fff !important;
    border:1px solid rgba(0,0,0,0.5);
    box-shadow:inset 0px 1px 1px rgba(255,255,255,0.7), 0px 1px 1px rgba(0,0,0,0.6);
    text-shadow: 1px 1px rgba(0,0,0,0.8);
    background-color:#5d9c0c !important;
    background: -webkit-gradient(linear, left top, left bottom, from(#6fb614), to(#4d8405));
    background: -moz-linear-gradient(top,  #6fb614,  #4d8405);
    box-shadow:inset 0px 1px 1px rgba(255,255,255,0.7), 0px 1px 1px rgba(0,0,0,0.2);
    border:1px solid rgba(0,0,0,0.3);
    text-decoration:none;
    border-radius:4px;
    text-align:center;
    cursor: pointer !important;
}
.uploadify-button-text{
    cursor: pointer !important;
}


.uploadify:hover .uploadify-button {
    cursor: pointer;
    background-color:#6fb614 !important;
    background: -webkit-gradient(linear, left top, left bottom, from(#7bc916), to(#4d8405));
    background: -moz-linear-gradient(top,  #7bc916,  #4d8405);
}
.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/11px 'UbuntuRegular', Arial, sans-serif;
	margin-top: 5px;
	max-width: 100%;
	padding: 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;
}
.uploadify-queue-item.completed {
	background-color: #E5E5E5;
}
.uploadify-progress {
	background-color: #E5E5E5;
	margin-top: 10px;
	width: 100%;
}
.uploadify-progress-bar {
	background-color: #62ae22;
	height: 3px;
	width: 1px;
}

.swfupload{
    position:absolute;
    left:0;
}