html, body {
  height: 100%;
}
.dropzone p {
  margin: 0;
  padding: 0;
  background-color: #0000E9;
}
.dropzone.small {
  height: 40px;
}
.copy:after, .link:after, .none:after, .all:after {
  position: absolute;
  content: "copy";
  font-size: 12px;
  padding: 2px;
  bottom: 0;
  right: 0;
  border: 1px solid #555;
  background-color: #555;
  color: #FFF;
}
.link:after { content: "link"; }
.none:after { content: "none"; }
.all:after { content: "all"; }


.dropzone {
  border: 1px solid #555;
  margin-top: 5px;
  width: 246px;
  min-height: 100px;
  position: relative;
  font-size: 12px;
}

.dragging {
  color: rgba(0,0,0, .4);
  background-color: rgba(0,0,255, .1);
  border-color: rgba(0,0,255, .3);
}

.dragging:after {
  content: "ここにドロップできます";
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 100px;
}

.dragenter {
  border-color: rgba(255,0,0, .3);
  background-color: rgba(255,0,0, .1);
}

.imageContainer {
  width: 246px;
  min-height: 100px;
  border: 2px solid #EEE;
}

#droparea {
	width: 100%;
	height: 600px;
	border: 2px solid #999;
	background-color : #FFD700;
}
.item, p {
	cursor: pointer;
	float: left;
	margin: 0.3em;
}
#droparea .item{
	position: absolute;
}
#droparea .box{
	position: absolute;
}
p{
	font-size: 105%;
	padding: 0.6em 0.4em;
	background-color: #88b7d5;
	border: 4px solid #c2e1f5;
}
[draggable=true]{
	-khtml-user-drag: element;
}