/*-------------------------
	Dropbox Element
--------------------------*/

#dropbox{
	/*background:url('../img/background_tile_3.jpg');*/
	
	border-radius:3px;
	/*position: relative;*/
	/*margin:80px auto 90px;*/
	min-height: 290px;
	overflow: hidden;
	padding-bottom: 40px;
    width: 100%;
	border:2px dashed #ccc;
	/*box-shadow:0 0 4px rgba(0,0,0,0.3) inset,0 -3px 2px rgba(0,0,0,0.1);*/
}


#dropbox .message{

	color:#B9B9B9;
	font-size: 20px;
    text-align: center;
    padding-top:120px;
    display: block;
}

#dropbox .message i{
	color:#ccc;
	font-size:10px;
}

#dropbox:before{
	border-radius:3px 3px 0 0;
}



/*-------------------------
	Image Previews
--------------------------*/



#dropbox .preview{
	width:180px;
	height: 140px;
	float:left;
	margin: 15px 0 0 15px;
	position: relative;
	text-align: center;
}

#dropbox .preview img{
	max-width: 160px;
	max-height:120px;
	border:3px solid #fff;
	display: block;
	
	box-shadow:0 0 2px #666;
}

#dropbox .imageHolder{
	display: inline-block;
	position:relative;
}

#dropbox .uploaded{
	position: absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	background: url('../images/done.png') no-repeat center center rgba(255,255,255,0.5);
	display: none;
}

#dropbox .preview.done .uploaded{
	display: block;
}



/*-------------------------
	Progress Bars
--------------------------*/



#dropbox .progressHolder{
position: absolute;
background-color: #fff;
height: 10px;
width: 100%;
left: 0;
bottom: 0;
border:1px solid #50A050;
	-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}

#dropbox .progress_bar{

	background-color:#82CF82;
	position: absolute;
	height:100%;
	left:0;
	width:0;
	
	box-shadow: 0 0 1px rgba(255, 255, 255, 0.4) inset;
		-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
	-moz-transition:0.25s;
	-webkit-transition:0.25s;
	-o-transition:0.25s;
	transition:0.25s;
}

#dropbox .preview.done .progress_bar{
	width:100% !important;
}



/*----------------------------
	The Footer
-----------------------------*/


