/**
 * FancyUpload Showcase
 *
 * @license		MIT License
 * @author		Harald Kirschner <mail [at] digitarald [dot] de>
 * @copyright	Authors
 */

/* CSS vs. Adblock tabs */
.swiff-uploader-box a {
	display: none !important;
}

/* .hover simulates the flash interactions */
a:hover, a.hover {
	color: red;
}

.demo-status {
	/*padding: 10px 15px;*/
	width: 100%;
	border: 1px solid #eee;
}

.demo-status p,
.demo-status div{
	padding:0.5em;
}

.demo-status .progress {
	background: url(images/progress.gif) no-repeat;
	background-position: +50% 0;
	margin-right: 0.5em;
	vertical-align: middle;
}

.demo-status .progress-text {
	font-size: 0.9em;
	font-weight: bold;
}

.demo-list {
	list-style: none;
	width: 100%;
	margin: 0;
	padding:0;
}

.demo-list li{
	margin:0;
	padding:0;
	border:none;
}

.demo-list li.validation-error {
	padding-left: 44px;
	display: block;
	clear: left;
	line-height: 40px;
	height:40px;
	width:100%;
	color: #8a1f11;
	cursor: pointer;
	border-bottom: 1px solid #fbc2c4;
	background: #fbe3e4 url(images/failed.png) no-repeat 4px 4px;
}

.demo-list li.file {
	border:none;
	border-bottom: 1px solid #eee;
	background: url(images/file.png) no-repeat 4px 4px;
	overflow: auto;
	float:left;
	width:100%;
	padding:0;
}
.demo-list li.file.file-uploading {
	background: url(images/uploading.png) no-repeat 4px 4px;
	background-color: #D9DDE9;
}
.demo-list li.file.file-success {
	background: url(images/success.png) no-repeat 4px 4px;
}
.demo-list li.file.file-failed {
	background: url(images/failed.png) no-repeat 4px 4px;
}

.demo-list li.file .file-name {
	font-size: 1.2em;
	margin-left: 44px;
	display: block;
	clear: left;
	line-height: 40px;
	height: 40px;
	font-weight: bold;
}
.demo-list li.file .file-size {
	font-size: 0.9em;
	line-height: 18px;
	float: right;
	margin-top: 2px;
	margin-right: 6px;
}
.demo-list li.file .file-info {
	display: block;
	margin-left: 44px;
	font-size: 0.9em;
	line-height: 20px;
}
.demo-list li.file .file-remove {
	clear: right;
	float: right;
	line-height: 18px;
	margin-right: 6px;
}