/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

.uploadifive-button {
    background-color: #E8970A;
    background-image: -moz-linear-gradient(bottom, #E8970A 0%, #FFC665 100%);
    background-image: -webkit-linear-gradient(bottom, #E8970A 0%, #FFC665 100%);
    background-image: -ms-linear-gradient(bottom, #E8970A 0%, #FFC665 100%);
    background-image: linear-gradient(bottom, #E8970A 0%, #FFC665 100%);
  -webkit-border-radius: 2;
  -moz-border-radius: 2;
  border-radius: 2px;
  //text-shadow: 1px 1px 0px #666666;
  font-weight: bold;
  color: #000;
  font-size: 13px;
  padding: 2px 10px;
  //border: solid #ce8300 2px;
  text-decoration: none;
  width: 173px;
  margin: 5px 0;
}
.uploadifive-button:hover {
    cursor: pointer;
    background-color: #15C8B9;
    background-image: -moz-linear-gradient(bottom, #15C8B9 0%, #1FDCCC 100%);
    background-image: -webkit-linear-gradient(bottom, #15C8B9 0%, #1FDCCC 100%);
    background-image: -ms-linear-gradient(bottom, #15C8B9 0%, #1FDCCC 100%);
    background-image: linear-gradient(bottom, #15C8B9 0%, #1FDCCC 100%);    
}
.uploadifive-button input:hover {
    cursor: pointer;
}
.uploadifive-queue-item {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font: 12px Arial, Helvetica, Sans-serif;
	margin-top: 3px;
	padding: 15px;
}
.uploadifive-queue-item.complete {
    display: none;
}
.uploadifive-queue-item .close {
	background: url('uploadifive-cancel.png') 0 0 no-repeat;
	display: block;
	float: right;
	height: 16px;
	text-indent: -9999px;
	width: 16px;
}
.uploadifive-queue-item .progress {
	border: 1px solid #D0D0D0;
	height: 3px;
	margin-top: 5px;
	width: 100%;
}
.uploadifive-queue-item .progress-bar {
	background-color: #0072BC;
	height: 3px;
	width: 0;
}