
.blur {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-o-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px);∑
}


/*
Drop zone
*/

#dropzone {
	position:fixed;
	top: 0px;
	left: 0px;
	z-index: 10000;
	margin: 0px;
	display:none;
	width: 100%;
	height: 100%;
	line-height: 50px;
	text-align: center;
	font-weight: bold;

}
#dropzone.in {
	margin: 0px;
	top: 0px;
	left: 0px;
	z-index: 10000;
	display:block;
	position:fixed;
	width: 100%;
	height: 100%;
	line-height: 200px;
	font-size: larger;

}
#dropzone.hover {
	background-color: #f6f6f6;
}
#dropzone.fade {
	text-align:center;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	background-color: #f6f6f6;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/* IE 5-7 */
	filter: alpha(opacity=50);
	/* Netscape */
	-moz-opacity: 0.5;
	/* Safari 1.x */
	-khtml-opacity: 0.5;
	/* Good browsers */
	opacity: 0.5;
}

.dropzone_inside{
	margin: auto; -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;position:absolute; top:50%;
	margin-top: -250px; left: 50%;
	margin-left: -425px;width: 850px;
	height: 225px; padding-top: 25px;
	font-size: 50px; font-weight: 900;
	box-shadow:inset 0px 0px 20px rgba(0, 0, 0, 0.1);
	border: 4px dashed #8e8e8e
}

/*
	Current Upload template
*/