.message-box-container {
	padding:20px 0;
	box-sizing: border-box;
	border:5px solid #eee;
}

.message-box {
	width:100%;
	padding:0 20px;
	box-sizing: border-box;
	padding-bottom: 10px;
	border-bottom: 3px solid #ccc;
	margin-bottom:10px;
}

.name-date-container {
	width:100%;
	height:30px;
	line-height: 30px;
}

.name-container {
	width:100px;
	height:20px;
	line-height: 20px;
	font-size: 16px;
	text-align: center;
	float:left;
	border:1px solid #eee;
}

.date-container {
	width:200px;
	height:20px;
	line-height: 20px;
	float:right;
	text-align: center;
	border:1px solid #ccc;
}

.content-container {
	width:100%;
	height:150px;
	overflow: scroll-y;
	padding:10px 0;
	text-indent: 2em;
	box-sizing: border-box;
	border:1px solid #ccc;
	position: relative;
	background:#fcfcfc;
}

.content {
	width:100%;
	height:150px;

}

.message-box:last-child {
	border:none;
}

.content-toolbar {
	position: absolute;
	width:30px;
	height:20px;
	right:0px;
	bottom:10px;
	text-indent: 0;
}

.delete-content {
	width:20px;
	height:20px;
	text-align: center;
	line-height: 18px;
	background:#333;
	color:#eee;
	cursor: pointer;
}

.delete-content:hover {
	background:#999;
}


