div.dropshot-container {
	width: 100px;
	height: 100px;
	
	border: 1px solid rgba(155,155,155, 0.2);
	-moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
	box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 0px inset, rgba(255, 255, 255, .3) 0px 1px 0px;
	-webkit-box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 0px inset, rgba(255, 255, 255, .3) 0px 1px 0px;
	-moz-box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 0px inset, rgba(255, 255, 255, .3) 0px 1px 0px;
	
	float:left;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	
	background-color:#FEFEFF;
	background-size: 100% 100%;
	 -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-clip: content-box;

	transition: background-color 120ms linear, background-image 120ms linear;
	-webkit-transition: background-color 120ms linear, background-image 120ms linear;
	-moz-transition: background-color 120ms linear, background-image 120ms linear;
	-ms-transition: background-color 120ms linear, background-image 120ms linear;
	-o-transition: background-color 120ms linear, background-image 120ms linear;
}
.dropshot_list div.dropshot-container { margin-right:7px; } /* skin/write.php */
div.dropshot-container.circle {
	-moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%;
	padding:0px !important;
}
div.dropshot-container:hover { border-color:#5f9cbb;
	box-shadow: rgba(255,255,255, 0.4) 0px 1px 2px inset;
	-webkit-box-shadow: rgba(255,255,255, 0.4) 0px 1px 2px inset;
	-moz-box-shadow: rgba(255,255,255, 0.4) 0px 1px 2px inset;
}

div.dropshot-container input { cursor: pointer !important; }
div.dropshot-container.dragging {
	background-color: rgba(255, 255, 255, 0.25);
}

div.dropshot-container:before {
	background-position: center top;
	background-repeat: no-repeat;
	color: #A2BDCB;
	
	font-size: 9px;
	font-weight: bold;
	text-align: center;
	text-overflow: ellipsis;
	text-transform: uppercase;
	
	display: none;
	width: 100%;
	height: 100%;
	padding-top:42%;
	
	overflow: hidden;
	white-space: nowrap;
	position: absolute;
}
div.dropshot-container:hover:before { color:#5f9cbb; }

div.dropshot-container.empty:before {
	content: "Drag & Drop";
	display: inline-block;
	text-align: center;
	left:0px; right:0px; top:0px; bottom:0px;
}

div.dropshot-container.filename:before {
	content: attr(data-filename);
	display: block;
}
div.dropshot-container .dropshot-buttons {
	position: absolute;
	bottom:0px;
	width:100%;
	text-align: center;
	padding-bottom:5px;
	border-bottom-left-radius:4px; -moz-border-bottom-left-radius:4px; -webkit-border-bottom-left-radius:4px;
	border-bottom-right-radius:4px; -moz-border-bottom-right-radius:4px; -webkit-border-bottom-right-radius:4px;
 
	opacity:0; -khtml-opacity:0; -moz-opacity:0; filter: alpha(opacity=0);
}
div.dropshot-container.empty button, div.dropshot-container:hover .dropshot-buttons { opacity:0.9; -khtml-opacity:0.9; -moz-opacity:0.9; filter: alpha(opacity=90); }



div.dropshot-container .tool_button {
	display: inline-block;
	margin-left:2px; margin-right:2px;
	width:20px; height:20px;
	line-height:20px;
	vertical-align: middle;
	-moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%;
	background: #fff;
	overflow: hidden;
	font-size:10px !important;
	
}

div.dropshot-container button {
	z-index: 2;
	display: block;
	cursor: pointer;
	
	height:20px !important;
	overflow: hidden;
	margin: 0px auto 0;
	padding:4px 4px 4px 4px !important;
	-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
	font-size: 9px; line-height: 9px !important;	
}
div.dropshot-container img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	max-width: 100%;
	-moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
}




