

.droppableTextarea {
	position: relative;
	width: 800px;
	height: 100px;
	margin-bottom: 20px;
}

.droppableTextarea > .dropMessage {
	position: absolute;
	width: 100%;
	color: #92AAB0;
	font-size: 200%;
	text-align: center;
	height: 100%;
	padding: 3px 5px;
	border: 2px dotted #0B85A1;
	border-radius: 5px;
	line-height: 100px;
	background: #eee;
	display: none;
}


.droppableTextarea.dragstart > .dropMessage {
	display: block;
}

.droppableTextarea.dragenter > .dropMessage {
	border: 3px solid #0B85A1;
	background: #d8d8d8;
}

.droppableTextarea > textarea {
	width: 100%;
	height: 100%;
}
