@charset "utf-8";
/* Scanning & Printing CSS Document */

html {
	box-sizing: border-box;
/*	font-size: 14px;*/
}
body {
	font-family: arial, sans-serif;
	padding: 0;
	margin: 0;
}
.scanprint {
	width: 85%;
	margin: 50px 10px 10px 60px;
	border: solid 2px #FBA71C;
	border-spacing: 0;
	border-collapse: collapse;
}
.scanprint caption {
	font-size: 4rem;
	font-weight: 700;
	color: #FBA71C
}
.scanprint thead th {
	font-size: 1.4rem;
	background: #000;
	color: lightgoldenrodyellow;
	text-align: center;
	border: solid 1px #FBA71C;
	padding: 5px 5px 5px 10px;
	 
}
.scanprint tbody td {
	font-size: 1.15;
	text-align: center;
	padding: 5px 5px 5px 5px;
	border-left: solid #FBA71C 1px;
/*	border: solid 1px #FBA71C;*/
	color: #FBA71C
}
.scanprint thead th:first-child {
	width: 40%;
	}
.scanprint thead th:nth-child(2) {
	width: 20%;
	}
.scanprint thead th:nth-child(3) {
	width: 20%;
	}
.scanprint thead th:last-child {
	width: 20%;
}
.scanprint tbody tr:nth-child(odd) {
	background: #191919;
}
.scanprint tbody tr:nth-child(even) {
	background: black;
}
.scanprint thead th ~ th {
	border-left: solid 2px #FBA71C
}
