#memo-area {
	font-size: 0px;
}
#memo-area input[type=text],
#memo-area input[type=password] {
	height: 30px;
	line-height: 30px;
	background-color: transparent;
	border: 0px;
	border-bottom: 1px solid rgb(200,200,200);
	border-radius: 0px;
	font-size: 16px;
	box-shadow: none;
	width: 45%;
}
#memo-area input[type=password] {
	float: right;
}
#memo-area textarea {
	border-radius: 0px;
	border: 1px solid rgb(200,200,200);
	font-size: 16px;
	display: block;
	height: 60px;
	width: 100%;
	box-sizing: border-box;
}
#memo-area input[type=submit] {
	font-size: 16px;
	color: white;
	background-color: rgb(0,155,255);
	width: 100%;
	padding: 0px;
	border: 0px;
	height: 40px;
	line-height: 40px;
}
#memo-area input[type=text]:focus,
#memo-area input[type=password]:focus,
#memo-area textarea:focus {
	border-color: rgb(0,155,255);
	box-shadow: none;
}
#memo-list-area .comment-list {
	border-bottom: 1px solid rgb(220,220,220);
	padding: 10px 0px 10px 0px;
}
#memo-list-area .comment-list .name {
	font-size: 15px;
	color: rgb(75,90,200);
}
#memo-list-area .comment-list .timestamp {
	font-size: 15px;
	color: rgb(125,125,125);
	margin-left: 8px;
}
#memo-list-area .comment-list .contents {
	font-size: 16px;
	color: black;
	padding: 4px 0px 0px 0px;
}
.goto-comment {
	font-size: 14px;
	display: inline-block;
	height: 35px;
	line-height: 35px;
	width: 80px;
	text-align: center;
	color: white;
	background-color: rgb(0,155,255);
	float: left;
}
.goto-comment:hover {
	color: white;
	font-weight: inherit;
	text-decoration: none;
}
.comment-delete-area {
	display: none;
}
.delete-comment {
	color: rgb(255,100,0);
	margin-top: 8px;
	text-decoration: underline;
}
.comment-delete-area form {
	margin: 0px;
}
.comment-delete-area.active {
	display: block;
}
.comment-delete-area input[type=password] {
	height: 30px;
	border: 0px;
	border-bottom: 1px solid rgb(200,200,200);
	box-shadow: none;
	font-size: 16px;
	width: 200px;
	border-radius: 0px;
	margin: 0px;
	box-sizing: border-box;
}
.comment-delete-area input[type=submit] {
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	width: 50px;
	text-align: center;
	border: 0px;
	background-color: rgb(0,125,255);
	color: white;
}