.content {
	position: relative;
	padding: 0px;
}
#drop-files {
	width: 100%;
	height: 130px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	border: 4px dashed rgba(0, 0, 0, 0.2);
	padding: 40px 5px 0px;
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	float: left;
	font-weight: bold;
}
#dropped-files {
	/*
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	height: 180px;
	float: left;
	*/
}
#dropped-files .image {
	position: absolute;
  left: 50%;
  top: 30px;
  width: 80%;
	height: 110px;
  margin-left: -40%;
	overflow: hidden;
	background: #fff;
	border-radius: 4px;	
}
#upload-button {
	position: absolute;
	top: 45px;
	left: 10px;
	z-index: 9999;
	width: 80px;
	height:30px;
	margin-left: -40px;
	left: 50%;
	display: none;
}

#upload-button .ss-upload {
	font-size: 0.7em;
}

#upload-button a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 0 1000px 62px rgba(255, 255, 255, 1), inset 0 -35px 40px -10px #0A9FCA;
	font-size: 15px;
	padding: 3px 4px;
	background-color: #4bc1e3;
	border-radius: 6px;
	overflow: hidden;
}

#upload-button span {
	display: none;
	/* hidden */
	width: 100px;
	text-align: center;
	margin: 90px 0 0 0;
	font-size: 1.0em;
	padding: 4px 0;
	position: relative;
	left: -20px;
}

#upload-button a:hover {
	box-shadow: 0 0 1000px 62px rgba(255, 255, 255, 1), inset 0 -5px 40px 0px #0A9FCA;
}

#extra-files {
	display: none;
	float: left;
	position: relative;
}

#extra-files .number {
	background: rgba(0, 0, 0, 0.6);
	border-radius: 4px;
	display: inline-block;
	position: relative;
	font-weight: bold;
	color: #fff;
	padding: 20px 30px;
	margin: 60px 0 0 0;
	cursor: pointer;
	font-size: 30px;
}

#dropped-files #upload-button .delete {
	top: 30px;
	position: absolute;
	padding: 7px 6px 4px 6px;
	background: rgba(0, 0, 0, 0.6);
	box-shadow: none;
	font-size: 1em;
	width: 100px;
	text-align: center;
	font-size: 1.0em;
	padding: 5px 7px;
	position: relative;
}

#dropped-files #upload-button .delete:hover {
	background: rgba(0, 0, 0, 0.8);
}


#extra-files .number:after {
	position: absolute;
	content: " ";
	top: 18px;
	left: -40px;
	display: block;
	border: 20px solid;
	border-color: transparent rgba(0, 0, 0, 0.6) transparent transparent;
}

#extra-files #file-list {
	display: none;
	background: white;
	padding: 20px 0;
	border-radius: 5px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	width: 250px;
	top: 100px;
	border: 1px solid #dadada;
	left: -10px;
	left: -16px;
	max-height: 220px;
	top: 150px;
	position: absolute;
	color: #545454;
}

#file-list ul {
	overflow: scroll;
	padding: 0;
	border-top: 1px solid #dadada;
	max-height: 200px;
	width: 250px;
	list-style: none;
	border-bottom: 1px solid #dadada !important;
}


#file-list ul li:last-of-type {
	border-bottom: 0 !important;
}

#uploaded-holder {
	/*
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	height: 180px;
	display: none;
	float: left;
	*/
}

#extra-files #file-list:after,
#extra-files #file-list:before {
	position: absolute;
	content: " ";
	top: -40px;
	left: 40px;
	display: block;
	border: 20px solid;
	border-color: transparent transparent #ffffff transparent;
}

#extra-files #file-list:before {
	border-color: transparent transparent #dadada transparent;
	top: -41px;
}

#extra-files #file-list li {
	border-bottom: 1px solid #eee;
	font-weight: bold;
	font-size: 1.5em;
	padding: 10px;
}

#loading {
	display: none;
	float: left;
	width: 100%;
	position: relative;
}

#loading-bar {
	width: 100%;
	height: 40px;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	padding: 2px;
}

.loading-color {
	width: 0%;
	height: 100%;
	-webkit-transition: all 0.1s ease-in;
	-moz-transition: all 0.1s ease-in;
	-ms-transition: all 0.1s ease-in;
	-o-transition: all 0.1s ease-in;
	transition: all 0.1s ease-in;
	border-radius: inherit;
	background-color: #4edbf1;
}

#loading-content {
	position: absolute;
	top: 8px;
	left: 0px;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	width: 100%;
}

#file-name-holder {
	width: 100%;
	float: left;
	display: none;
}

#file-name-holder h1 {
	text-align: center;
	border-bottom: 1px solid #dadada;
	padding: 20px 0;
	font-size: 3em;
	margin: 0;
}

#uploaded-files {
	background: white;
	border-radius: 5px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	width: 100%;
	top: 100px;
	padding: 0;
	border: 1px solid #dadada;
	max-height: 320px;
	overflow: scroll;
	color: #545454;
}

#uploaded-files li {
	padding: 10px;
	border-bottom: 1px solid #eee;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 25px;
	color: #545454;
}

#uploaded-files a {
	color: #1bacbf;
}

#seconds {
	display: none;
}