@CHARSET "UTF-8";

.content {
	width: 800px;
	margin: 0 auto;
}

.content .head {
	margin-top: 100px;
	text-align: left;
}

.content .head ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0;
}

.content .head li {
	display: inline-block;
}

.content .head li a {
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	width: 190px;
	text-decoration: none;
	color: rgb(221, 221, 221);
	font-size: 20px;
	font-weight: bold;
	border-bottom: 3px solid rgb(207, 207, 207);
	margin-left: 5px;
	margin-right: 5px;
	padding-bottom: 10px;
	cursor: pointer;
}

.content .head li.selected a {
	color: rgb(50, 101, 128);
	font-size: 20px;
	font-weight: bold;
	border-bottom: 3px solid rgb(20, 161, 223);
}

.content .title h1 {
	margin: 40px 0;
	padding: 0;
	font-weight: normal;
	font-size: 12px;
}

.content .list {
	min-height: 300px;
}

.content .list table {
	box-sizing: border-box;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

.content .list table tr > *:first-child {
	text-align: left;
	padding-left: 10px;
}

.content .list table tr > *:last-child {
	text-align: right;
	padding-right: 10px;
}

.content .list table thead {
	background: rgb(247, 247, 247);
	border-bottom: 3px solid rgb(219, 219, 219);
}

.content .list table tr * {
	padding-top: 5px;
	padding-bottom: 5px;
}

.content .list table tr > td {
	font-size: 14px;
}

.content .list table tr > td > * {
	vertical-align: middle;
}

.content .list table tr > td > a {
	text-decoration: none;
	color: black;
}

.content .list table tr > td > a:hover {
	color: gray;
	text-decoration: underline;
}

.content .list table tr > td > img {
	width: 15px;
	height: 15px;
	margin-left: 10px;
}

.content .list table tbody tr:nth-child(2n) {
	background: rgb(250, 250, 250);
}

.content .write {
	text-align: right;
	margin-right: 10px;
}

.content .write input {
	box-sizing: border-box;
	width: 75px;
	height: 20px;
}

.content .navigator {
	text-align: center;
	margin-top: 30px;
}

.content .navigator ul {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0;
}

.content .navigator ul li {
	display: inline-block;
	font-size: 14px;
	padding: 5px 15px;
}

.content .navigator ul li a {
	text-decoration: none;
	color: black;
}

.content .navigator ul li.selected a {
	color: red;
}