/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/

.uploadify { /* button */
    float: left;
    margin-right: 3px;
}

.uploadify-queue {
  background: #f9f9f9;
  border: 1px solid #ccc;
  margin: 10px 0;
  padding: 10px 10px 10px 95px;
}

.uploadify-queue strong {
  float: left;
  margin: 14px 0 14px -80px;
}

.uploadify-queue-item {
    background: #fff;
    border: 1px solid #ccc;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    float: left;
    margin: 5px;
    padding: 10px;
    width: auto;
    height: 29px;
}

.uploadify-error {
	background-color: #FDE5DD !important;
	border: 2px solid #FBCBBC !important;
}

.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;
}

.uploadify-queue-item .cancel {
	float: right;
}

.uploadify-queue-item .cancel a {
    display: block;
	background: url('cancel.png') 0 0 no-repeat;
    text-indent: -9999px;
    width: 21px;
	height:	20px;
    margin-left: 15px;
}
