.content {
	margin-bottom: 20px;
}

.chart {
	margin: 0px 20px 20px 20px;
	font-size: 9pt;
}

.table, .sort_table {
	display: table;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.table {
	border: 1px solid #E6E9ED;
}

.table .row, .sort_table .sort_row {
	display: table-row;
	text-align: center;
}

.table .title {
	font-weight: bold;
}

.table .row .cell, .sort_table .sort_row .sort_cell {
	display: table-cell;
	vertical-align: middle;
}

.table .row>div:FIRST-CHILD {
	width: 60%;
	border-right: 1px solid #E6E9ED;
}

.table .title .cell {
	padding: 6.5px 0px;
	background: #F5F7FA;
	border-bottom: 1px solid #E6E9ED;
}

.table .title>div:FIRST-CHILD {
	border-right: 1px solid #E6E9ED;
}

.table .title>div:LAST-CHILD>span:FIRST-CHILD {
	padding: 0px 16px;
	white-space: nowrap;
	float: left;
}

.table .title>div:LAST-CHILD>span:nth-child(2) {
	width: 100%;
}

.table .title>div:LAST-CHILD>span:LAST-CHILD {
	float: right;
	padding: 0px 16px;
	white-space: nowrap;
}

.sort_table .sort_row .sort_cell {
	padding: 10px 0px;
	border-top: 1px solid #E6E9ED;
}

.sort_table .sort_row:FIRST-CHILD>div {
	border-top: none;
}

.sort_table .sort_row>div:nth-child(1) {
	padding: 0px 20px;
}

.sort_table .sort_row>div:nth-child(3) {
	padding: 0px 16px;
}

.sort_table .sort_row>div:nth-child(2) {
	width: 100%;
}

.sort_table .sort_row>div:nth-child(2) span {
	overflow: hidden;
	-webkit-line-clamp: 1;
	-moz-line-clamp: 1;
	-ms-line-clamp: 1;
	-o-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-box-orient: vertical;
	-o-box-orient: vertical;
	box-orient: vertical;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-box;
	display: -o-box;
	display: box;
	word-break: break-all;
}