.dropzone {
	position: relative;
	/*border-radius:2px;*/
	/*margin:0px -10px -10px -10px;*/
	border:1px dashed transparent;
    /*padding: 15px 0 0 15px;
    margin: -16px -16px -16px -16px;
    */
}
.dropzone.dz-drag-hover{
	background: #f2fbff;
	border-color:#b6bcbf;
}
.dropzone .dz-drag-text{
	display:none;
	position: absolute;
	line-height: 1em;
	font-size: 1.4em;
	padding: 15px;
	right: 0px;
	top: -65px;
	background: #f2fbff;
	border: 1px dashed #b6bcbf;
}
.dropzone .dz-drag-text > .a{
	width: 30px;
	height: 15px;
	position: absolute;
	right: 20px;
	bottom:-15px;
	overflow: hidden;
}
.dropzone .dz-drag-text > .a > div{
    border: 1px dashed #b6bcbf;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    background: #f2fbff;
    margin-top: -21px;
}
.dropzone.dz-drag-hover .dz-drag-text{
	display:block;
}
.dropzone.dz-clickable {
	cursor: pointer;
}
/*
.dropzone .dz-add-files-container{
	margin-right:15px;
	margin-bottom:15px;
	text-align: center;
}
*/
.dropzone .dz-files-container{
	position: relative;
	margin-top:15px;
	margin-right:-15px;
	margin-bottom:-15px;
	overflow: hidden;
}
.dropzone .dz-preview,
.dropzone-previews .dz-preview {
	/*position: relative;*/
	/*display: inline-block;*/
	/*margin:10px;*/
	/*vertical-align: top;*/
	/*border-radius: 2px;*/
	border: 1px solid #ddd;
	padding: 5px;
	min-width:110px;
	background-color: #fff;

	float: left;
	margin: 0 15px 15px 0;
}
.dropzone .dz-preview-drag{
	cursor: move;
	position: absolute;
	z-index: 3;
}
.dz-preview-placeholder{
	width: 100px;
	height: 100px;
	list-style: none;
	float: left;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 1px dashed #b6bcbf;
	background: #f2fbff;
	margin: 0 15px 15px 0;
}
.dropzone .dz-drag{
	position: absolute;
	background: #fff;
	margin-top:-5px;
	margin-left: -5px;
	padding:3px 6px;
	cursor: pointer;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.dropzone .dz-thumb,
.dropzone-previews .dz-thumb {
	text-align: center;
	max-width:120px;
	height: 80px;
}
.dropzone .dz-openable,
.dropzone-previews .dz-openable {
	cursor: pointer;
}
.dropzone .dz-thumb img,
.dropzone-previews .dz-thumb img{
	max-width: 100%;
	max-height: 100%;
}
.dropzone .dz-filename,
.dropzone-previews .dz-filename {
	margin-top: 5px;
	margin-bottom: 5px;
	max-width: 120px;
	font-size: .95em;
	line-height: 17px;
	height: 35px;
	overflow: hidden;
	text-align: center;
}
.dropzone .dz-btns{
	text-align: center;
	visibility: hidden;
}
.dropzone .dz-btns button,
.dropzone-previews .dz-btns button {
	padding:3px 7px
}
.dropzone .dz-progress-container{
	position: relative;
}
.dropzone .dz-progress,
.dropzone-previews .dz-progress {
	position: absolute;
	top: -20px;
	left: 6px;
	right: 6px;
	height: 6px;
	background: #d7d7d7;
	display: none;
}
.dropzone .dz-preview.dz-processing .dz-progress,
.dropzone-previews .dz-preview.dz-processing .dz-progress {
	display: block;
}
.dropzone .dz-preview .dz-progress .dz-upload,
.dropzone-previews .dz-preview .dz-progress .dz-upload {
	-webkit-animation: loading 0.4s linear infinite;
	-moz-animation: loading 0.4s linear infinite;
	-o-animation: loading 0.4s linear infinite;
	-ms-animation: loading 0.4s linear infinite;
	animation: loading 0.4s linear infinite;
	-webkit-transition: width 0.3s ease-in-out;
	-moz-transition: width 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out;
	-ms-transition: width 0.3s ease-in-out;
	transition: width 0.3s ease-in-out;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	width: 0%;
	background-image: url("../images/spritemap.png");
	background-repeat: repeat-x;
	background-position: 0px -400px;
}

@-moz-keyframes loading {
	from {
		background-position: 0 -400px;
	}
	to {
		background-position: -7px -400px;
	}
}
@-webkit-keyframes loading {
	from {
		background-position: 0 -400px;
	}
	to {
		background-position: -7px -400px;
	}
	}
@-o-keyframes loading {
	from {
		background-position: 0 -400px;
	}
	to {
		background-position: -7px -400px;
	}
}
@keyframes loading {
	from {
		background-position: 0 -400px;
	}
	to {
		background-position: -7px -400px;
	}
}


.dropzone .dz-preview.bg-anim{
	animation-name: bganim;
	animation-duration: .8s;
}
@keyframes bganim {
    from {background-color: #ddd;}
    to {background-color: #fff;}
}