
	img {
		border: 1px solid black;
		width: 144px;
	}

	.container {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		padding: 5px 0 20px 0;
		/* border-bottom: 3px solid green; */
	}
	.container>div {
		border-bottom: 1px solid green;
		display: flex;
		gap: 10px;
		flex-direction: row;
		justify-content: space-between;
		padding: 5px 0;
		width: 760px; /* 250 + 3*160 + 3* 10 = 920 */
	}
	.container>div:first-child {
		/* border-top: 1px solid green; */
		border-top: none;
		font-size: 14px;
		font-weight: bold;
		margin: 10px 0 5px 0;
	}
	.container>div>div {
		/* border: 1px solid red; */
		width: 160px;
	}
	.container>div>div:first-child {
		width: 250px;
	}
	
	.ti {
		color: #00a;
		font-family: Lucida Console, monospace;
		font-weight: bold;
		font-stretch: condensed;
	}