.filethumb {
	display: block;
	padding: 4px;
	padding-bottom: 24px;
	border: 1px solid #CCC;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	position: relative;
	float: left;
	margin-top: 15px;
	margin-left: 15px;
	background-color: white;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.filethumb.single {
	margin-top: 0px;
	margin-left: 0px;
}

.error .filethumb {
	border-color: #B94A48;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	transition: border linear .2s,box-shadow linear .2s;
}

.error .filethumb:hover {
	border-color: #953B39;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #D59392;
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #D59392;
}

.filethumb:hover {
	border-color: rgba(82, 168, 236, 0.8);
	outline: 0;
	outline: thin dotted 9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);
	-webkit-transition: border linear .2s,box-shadow linear .2s;
	-moz-transition: border linear .2s,box-shadow linear .2s;
	-o-transition: border linear .2s,box-shadow linear .2s;
	transition: border linear .2s,box-shadow linear .2s;
}

.filethumb .filecontainer {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.filethumb .filecontainer .nofile {
	height: 100%;
	background: url('../Images/nofile.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #e8e8e8;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.filethumb .utils {
	position: absolute;
	width: 100%;
	bottom: 1px;
	right: 5px;
	text-align: right;
}

.filethumb .utils i {
	cursor: pointer;
	padding-left: 4px;
}

.uploadedfile {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position:center; 
	background-color: #e8e8e8;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.uploadedfile.pdf {
	background-image: url(../Images/Mimetype/pdf.png);
}

.uploadedfile.xls, .uploadedfile.xlsx {
	background-image: url(../Images/Mimetype/xls.png);
}

.uploadfilename {
	font-size: 10px;
	position: relative;
	top: -26px;
	width: 100%;
	text-align: center;
	overflow: hidden;
}