﻿/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

.uploadifive-button {
	position: relative;
	margin-bottom: 0px;
	text-align:left;
	box-sizing:border-box;
}
.uploadifive-button:hover {
}
.uploadifive-queue-item {
	background-color: #FFFFFF;
	/*border-bottom: 1px dotted #D5D5D5;*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #565656;	
	font: 12px Verdana, Geneva, sans-serif;
	margin-top: 3px;
	padding: 8px;
	box-sizing: border-box;
	
	min-width:64px;
}
.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 #D9D9D9;
	background-color:#F0F0F0;
	height: 8px;
	margin-top: 5px;
	width: 100%;
	box-sizing: border-box;
}
.uploadifive-queue-item .progress-bar {
	background-color: #0b9be2;
	height: 8px;
	width: 0;
	box-sizing: border-box;
}

.error {
	background-color: #FFFFFF;
	border-bottom: 1px dotted #D5D5D5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #E00000;	
	font: 12px Verdana, Geneva, sans-serif;
	margin-top: 3px;
	padding: 8px;
}
