/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/
.fileupload {
	text-align:left;
}

.uploadifive-button {
	float: left;
	margin-right:5px;
	background:#888;
	border-radius:0;
	border:none;
	color:white;
	font: bold 12px Arial, Helvetica, sans-serif;
	text-align: center;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	text-transform: uppercase;
	width:100%;
	overflow:hidden;
}
.uploadifive-button:hover {
	background:#666;
	text-decoration:none;
}

a.uploadifive-button {
	width:auto;
	color:white;
	height:30px;
	line-height:30px;
	padding:0 1em;
	background:#2a71bd;
}
a.uploadifive-button:hover {
	background:#1a5798;
}

.uploadifive-queue {
	margin:1em 0;
	border:2px dashed #aaa;
	border-radius:3px;
	height:auto;
	min-height:50px;
	max-height:150px;
	overflow-x:hidden;
	overflow-y:auto;
	padding:0 3px 3px;
}
.uploadifive-queue.sml {
	height:41px;
}
.uploadifive-queue .ment {
	display:block;
	text-align:center;
	padding:1em 0 .8em;
	font-size:24px; color:#aaa;
}

.uploadifive-queue-item {
	background-color: #F5F5F5;
	border-bottom: 1px dotted #D5D5D5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font: 12px Arial, Helvetica, Sans-serif;
	margin-top: 3px;
	padding:.5em 1em .6em;
}
.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;
}

.clr {*zoom:1;}
.clr:after {content:''; display:block; clear:both;}
