/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

/* restyling */

#uploadifive-file_upload, #uploadifive-file_upload_editor {
/*
margin-bottom: -7px !important;
height: 21px !important;
line-height: 21px !important;
*/
}

.uploadifive-button {
display:inline-block;
position:relative;
color: #4c4c4c;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
background: #f6f6f6;
background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#d4d4d4));
background: -webkit-linear-gradient(#f6f6f6, #d4d4d4);
background-image: -moz-linear-gradient(top, #f6f6f6, #d4d4d4);
background-image:-o-linear-gradient(top, #f6f6f6, #d4d4d4);
background-image: -moz-gradient(top, #f6f6f6, #d4d4d4);
border: 1px solid #a1a1a1;
margin: 0px 3px;
}

.uploadifive-button:hover {
background: #f6f6f6;
background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#ececec));
background: -webkit-linear-gradient(#f6f6f6, #ececec);
background-image: -moz-linear-gradient(top, #f6f6f6, #ececec);
background-image: -o-linear-gradient(top, #f6f6f6, #ececec);
background-image: -moz-gradient(top, #f6f6f6, #ececec);
}

.uploadifive-button input {
  cursor: pointer;
}

.uploadifive-queue-item.complete {
  display: none;
}

/* not-original */
.uploadifive-queue-item {
	background-color: #F5F5F5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font: 11px Verdana, Geneva, sans-serif;
	margin-top: 30px; 
	padding: 10px;
}

.uploadifive-queue-item .close {
  display: none;
}

.uploadifive-queue-item .progress {
	margin-top: 10px;
	width: 100%;			 
  border: 1px solid #E5E9EB;
  border-radius: 4px;
  background-color: #FCFCFF;
}

.uploadifive-queue-item .progress-bar {
	background-color: #0099FF;
	height: 23px;
	width: 1px;
}

.uploadifive-queue-item .cancel a {
	float: right;
    font-size: 10px!important;
    padding: 2px 4px!important;
}