/*
 * Widget
 */
.uploader {
	border: 2px dotted #A5A5C7;
	width: 100%;
	color: #92AAB0;
	text-align: center;
	vertical-align: middle;
	padding: 40px 0px;
	margin-bottom: 10px;
	font-size: 24px;
	cursor: default;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.uploader-active {
	border-color: #0B85A1;
}

.uploader div.or {
	font-size: 14px;
	font-weight: bold;
	color: #C0C0C0;
	padding: 10px;
}

.uploader div.browser label {
	background-color: #5a7bc2;
	padding: 5px 15px;
	color: white;
	padding: 6px 0px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
	display: block;
	width: 300px;
	margin: 20px auto 0px auto;
	box-shadow: 2px 2px 2px #888888;
}

.uploader div.browser span {
	cursor: pointer;
}

.uploader div.browser input {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	border: solid transparent;
	border-width: 0 0 100px 200px;
	opacity: .0;
	filter: alpha(opacity =                                           0);
	-o-transform: translate(250px, -50px) scale(1);
	-moz-transform: translate(-300px, 0) scale(4);
	direction: ltr;
	cursor: pointer;
}

.uploader div.browser label:hover {
	background-color: #427fed;
}

/*
 * File list
 */
.fileList {
	width: 100%;
	list-style-type: none;
	color: gray;
	font-size: 12px;
}

.fileList .file {
	width: 100%;
	margin-bottom: 15px;
}

.fileList .info {
	width: 100%;
	height: 26px;
	display: block;
	overflow: hidden;
	line-height: 13px;
}

.fileList .filename {
	
}

.fileList .f_left {
	float: left;
}

.f_right {
	float: right;
}

.fileList .bar {
	border: solid 1px #C0C0C0;
	height: 12px;
	margin-top: 5px;
	padding: 1px;
	width: 100%;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	float:left;
	box-sizing: content-box;
}

.fileList .progress {
	height: 12px;
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%,
		transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%,
		rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-size: 40px 40px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	background-size: 40px 40px;
	margin-bottom:0;
}


@-webkit-keyframes progress-bar-stripes{
	from{
		background-position:40px 0
	}

	to{
		background-position:0 0
	}

}

@keyframes progress-bar-stripes{
	from{
		background-position:40px 0
	}

	to{
		background-position:0 0
	}

}

.progress-bar {
	float: left;
	width: 0px;
	font-size: 12px;
	line-height: 20px;
	color: #FFF;
	text-align: center;
	box-shadow: 0px -1px 0px rgba(0, 0, 0, 0.15) inset;
	transition: width 0.1s ease 0s;
	background-color: #428BCA;
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	animation: 1s linear 0s normal none infinite running progress-bar-stripes;
}

.fileList span.success {
	color: #009900;
}

.fileList span.error {
	float:none;
	color: #990000;
	color: #990000;
	font-size: 13px;
	line-height: 17px;
}
.fileList .file a.zone-cancel .fa {
	float: left;
	margin-top: 5px;
	margin-left: 6px;
	color: #686868;
	font-size: 16px;
}
.fileList .file a.zone-cancel:hover .fa {
	color:#333;
}
/* Debug */
#debug {
	clear: both;
	padding-top: 15px;
	color: #333;
}
#debug h2 {
	margin: 0px;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 20px;
	color: #333;
}

#debug div {
	height: 150px;
	width: 100%;
	overflow: auto;
	margin-top: 10px;
	margin-bottom: 30px;
}

#debug ul {
	padding: 0px 0px 0px 20px;
	font-size: 12px;
}

#debug li {
	padding: 0px;
	margin: 0px 0px 7px 0px;
}

#footer {
	clear: both;
	width: 100%;
	padding: 20px 0px;
	font-size: 12px;
	color: #777;
	border-top: 1px solid #e5e5e5;
	text-align: right;
}


#drag-and-drop-zone-htmlArea.dropzone {
	border: 0px;
}

#drag-and-drop-zone-htmlArea .fileList {
	width:auto;
	padding:0 30px;
}

#drag-and-drop-zone-htmlArea .fileList .file {
	width: 100%;
}

#drag-and-drop-zone-htmlArea .fileList .info {
	width: 100%;
	margin-top: 10px;
}

#drag-and-drop-zone-htmlArea .fileList .bar {
	width: 315px;
	margin-bottom: 10px;
}

#htmlAreaUpload .default-button {
	margin-top: 10px;
	margin-bottom: 20px;
}

#htmlAreaUpload .dropzone .droptext {
	color: #A4A4A4;
	font-size: 16px;
	background: url('../../img/upload/iconupload.png') no-repeat scroll left
		center transparent;
	padding-left: 40px;
	display: inline-block;
	height: 30px;
	line-height: 30px;
}

#htmlAreaUpload .dropzone div.or {
	font-size: 50%;
	font-weight: bold;
	color: #D7D7D7;
	padding: 5px;
}

#htmlAreaUpload a.close {
	position: absolute;
	right: 10px;
	top: 10px;
	color: #333;
	display: inline-block;
	padding: 5px;
}
