 @import url("https://use.typekit.net/age5pyb.css");

:root {
	--white: rgb(255,255,255); 
	--white-rgb: 255,255,255;	
	--lbg: rgb(243,245,245);
	--lbg-rgb: 243,245,245;
	--ltext: rgb(95,171,205);
	--llblue: rgb(205,245,255);
	--llblue-rgb: 205,245,255;
	--lblue: rgb(28,181,223);
	--lblue-rgb: 28,181,223;
	--blue: rgb(16,124,195);
	--blue-rgb: 16,124,195;
	--mblue: rgb(0,70,180);
	--mblue-rgb: 0,70,180;
	--dblue: rgb(0,40,90);
	--dblue-rgb: 0,40,90;
	--navblue: rgb(190,215,240);
	--navblue-rgb: 190,215,240;
	--orange: rgb(255,71,26);
	--orange-rgb: 255,71,26;
	--grey: rgb(230,230,230);
	--text: rgb(2,7,27);
	--text-rgb: 2,7,27;
	font-size: 14px;
}
@media (-webkit-device-pixel-ratio: 1.25) {
	:root {
		zoom: 0.9;
	}
}
@media (-webkit-device-pixel-ratio: 1.5) {
	:root {
		zoom: 0.8;
	}
}
/* Checking for overflow */
/** {
   outline: 1px solid red;
  }*/
::placeholder {
	color: var(--ltext);
	opacity: 1; /* for Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: var(--ltext);
}
::-ms-input-placeholder { /* Microsoft Edge */
 color: var(--ltext);
}
html,
body {
	margin: 0;
	padding: 0;
	height: auto;
}
html, body, header, footer, main {
	width: 100vw;
	min-width: 1320px;
}
body {
	position: relative;
	min-height: 100vh;
	padding: 0 0 50px 0;
	background-color: var(--mblue);
 background-image: url("../images/nav_light_left.svg"), url("../images/nav_light_right.svg"),
																			radial-gradient(circle farthest-corner at 30% 30%, rgba(var(--lblue-rgb), 0.7) 0%, rgba(var(--text-rgb),0.2) 90%);										
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-size: 90px auto, 90px auto, cover;
	background-position:  bottom left, bottom right, top left;
	/*background-image: url("../images/nav_light_left.svg"), url("../images/nav_light_right.svg"),
																			repeating-linear-gradient(45deg, transparent 0 5px, rgba(var(--blue-rgb), 0.2) 5px 8px),
																			radial-gradient(circle farthest-corner at 30% 25%, rgba(var(--lblue-rgb), 0.5) 0%, rgba(var(--text-rgb),0.6) 90%);										
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
	background-size: 110px auto, 110px auto, contain, cover;
	background-position:  bottom left, bottom right, top left, top left;*/
}
main {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	padding: 0 0 50px 0;
/*	min-height: calc(100vh - 70px);
	padding: 0 0 70px 0;*/
	height: auto;
}
html, body, header, main, main > .data, footer, nav, div, ul, li, fieldset, table, th, button {
	box-sizing: border-box;
}
ul,li {
	margin:0;
	padding: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
	padding-inline-start: 0;
}
html, body, main, header, nav, footer, select, input, button, textarea {
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	/*letter-spacing: 0.01em;*/
	color: var(--text);
	border: none;
}
textarea {
	white-space: pre-wrap;
}

/* Main parts styling */

header, nav, footer {
/*	font-weight: 500;*/
	letter-spacing: 0.02em;
}
header {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0;
	padding: 20px 30px 15px 36px;
	height: 150px;
	background-image: url("../images/wave1.svg");
	background-repeat: no-repeat;
	background-size: 54px auto;
	background-position: 36px 20px;
}
header.loginhead {
	padding-right: 30px;
}
header div {
	padding: 0;
	line-height: 16px;
	align-self: flex-end;
	width: auto;
	height: auto;
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-align: left;
	color: rgba(var(--white-rgb), 0.8);
}
.login {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	width: 700px;
	height: 540px;
	margin-right: auto;
	margin-left: auto;
	margin-top: calc(50vh - 420px);
	padding: 0 100px;
	background-color: var(--lbg);
	border: 3px solid rgba(var(--blue-rgb),0.8);
	border-radius: 50px;
	filter: drop-shadow(-3px -3px 16px rgba(var(--dblue-rgb),0.7));
}
.login tr:last-of-type {
	border-bottom: none;
}
.login table {
	margin-right: auto;
	margin-left: auto;
	min-width: 500px;
}
.error, .message {
	margin-bottom: 70px;
	padding: 30px 50px;
	line-height: 28px;
	width: 100%;
	border-radius: 1px;
	/*filter: drop-shadow(1px 5px 5px rgba(var(--dblue-rgb), 0.2));*/
}
.error {
	color: var(--white);
	background-color: var(--orange);
	/*border-left: 2px solid var(--orange);*/
}
.message {
	color: var(--white);
	background-color: var(--blue);
	/*border-left: 2px solid var(--navblue);*/
}
.page_break {
	display: none;
}

/* Header search form */
header form {
	box-sizing: border-box;
	position: absolute;
	right: 190px;
	bottom: 20px;
	width: 400px;
	height: auto;
	text-align: right;
}
header form > label {
	width: 0;
	height: 0;
}
header form > select {
	margin: 0;
	width: 250px;
	color: var(--dblue);
	border: 2px solid var(--blue);
	border-radius: 2px;
	filter: drop-shadow(1px 3px 4px rgba(var(--dblue-rgb), 0.7));
}
header form > select:hover {
	border: 2px solid var(--lblue);
}
header form > select:focus {
	border: 2px solid var(--lblue);
}
header form > select:active {
	border: 2px solid var(--lblue);
}
header option > span {
	color: var(--blue);
}
header button {
	left: 10px;
	filter: drop-shadow(1px 0 7px var(--dblue));
}
header button:hover {
	background-color: var(--blue);
}
main > .data {
	position: relative;
	border: 3px solid rgba(var(--blue-rgb),0.7);
	border-radius: 50px;
	width:	calc(100% - 250px);
	min-width: 1070px;
	height: auto;
	min-height: 700px;
	margin: 0 auto;
	padding: 70px 60px 80px 60px;
	background-color: var(--white);
	z-index: 10;
	filter: drop-shadow(-3px -3px 16px rgba(var(--dblue-rgb),0.7));
}
div.data > div {
	overflow-x: auto;
}
div.data > div.new {
	box-sizing: border-box;
/*	overflow-x: hidden;*/
	width: 100%;
}
main > .stat {
	padding-bottom: 40px;
}
#letterhead, #letterbottom {
	display: none;
}
footer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	position: absolute;
	bottom: 0;
	height: 50px;
	width: 100vw;
	padding: 20px 0 0 144px;
	font-size: 12px;
	font-weight: 300;
	line-height: 30px;
	text-align: left;
	color: var(--llblue);
	background-color: transparent;
}
footer > div {
	padding: 0;
	margin: 0;
}

/* Headings */

h1, h2, h3, h4 {
	margin-block-start: 0;
	margin-block-end: 0;
/*	filter: drop-shadow(0 0 2px rgba(var(--dblue-rgb),0.9));*/
	width: auto;
	max-width: 90%;
	display: block;
}
h2, h3, h4 {
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif;
}
/* Port of Call */
h1 {
	position: relative;
	top: -81px;
	left: 21px;
	text-align: left;
}
h1 > a, h1 > a:visited {
	text-decoration: none;
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(var(--white-rgb), 0.8);
}
h1 > a:hover, h1 > a:focus, h1 > a:active {
	color: var(--lblue);
}

/* Name of the Page - placed in the header */
h2 {
	position: absolute;
	bottom: 0;
	left: 190px;
	width: auto;
	font-family: magistral-condensed, Arial, Helvetica, sans-serif;
	font-size: 80px;
	font-weight: 300;
	line-height: 100px;
	text-align: left;
	color: rgba(var(--white-rgb),0.95);
	z-index: -90;
}
h3 {
	text-align: left;
	margin-bottom: 12px;
	font-size: 36px;
	line-height: 50px;
	font-weight: 500;
	color: var(--dblue);
	filter: none;
}

/* Search results */
h4 {
	position: absolute;
	top: 110px;
	left: 270px;
	font-size: 22px;
	font-weight: 400;
	line-height: 22px;
	text-align: left;
	color: var(--lbg);
}
h5 {
	position: absolute;
	top: -95px;
	right: 70px;
	height: 110px;
	border: 1px solid rgba(var(--navblue-rgb),0.4);
	border-radius: 10px;
	background-color: rgba(var(--navblue-rgb), 0.4);
	margin: 0;
	padding: 20px 25px 10px 25px;
	text-align: right;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.03em;
	color: var(--white);
	filter: drop-shadow(1px -4px 5px rgba(var(--text-rgb),0.5));
}
h5 span {
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 36px;
	vertical-align: bottom;
}
hr {
	border: none;
}
hr.wide {
	margin: 2
		0px auto;
}

/* Navigation */
nav {
	position: absolute;
	height: auto;
	width: 170px;
	min-width: 170px;
	top: 60px;
}
/*nav.left, nav.right {
	top: 60px;
}*/
nav.left {
	left: 0;
}
nav.right {
	right: 0;
}
nav.loginlable {
	left: calc(50% - 470px);
}
nav ul {
	display: flex;
	list-style: none;
	flex-direction: column;
	flex-wrap: nowrap;
	margin: 0;
	justify-content: flex-start;
	width: 170px;
}
nav.left > ul, nav.loginlable > ul {
	align-items: flex-start;
	padding: 20px 0 0 30px;
}
nav.right > ul {
	align-items: flex-end;
	padding: 20px 30px 0 0;
}
nav ul li {
	display: block;
	height: 80px;
}
nav ul li a {
	position: relative;
	display: block;
	box-sizing: border-box;
	height: 60px;
	width: 130px;
	line-height: 56px;
	text-decoration: none;
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif; 
	font-size: 14px;
	letter-spacing: 0.03em;
	vertical-align: middle;
	color: var(--white);
	background-color: rgba(var(--navblue-rgb), 0.4);
	border: 1px solid rgba(var(--navblue-rgb),0.3);
	border-radius: 10px;
	z-index: 0;
	/*filter: drop-shadow(0 0 2px rgba(var(--dblue-rgb),0.5));*/
}
nav.left ul li a, nav.loginlable ul li a {
	left: 0;
	text-align: left;
	padding-left: 15px;
	filter: drop-shadow(-5px 1px 5px rgba(var(--text-rgb),0.8));
}
nav.right ul li a {
	right: 0;
	text-align: right;
	padding-right: 15px;
	filter: drop-shadow(5px 1px 5px rgba(var(--text-rgb),0.8));
}
nav ul li a:visited {
	/*border: 2px solid var(--llblue);*/
	color: var(--white);
}
nav ul li a:hover, nav ul li a:focus, nav ul li a:active {
	color: var(--white);
	background-color: rgba(var(--white-rgb), 0.4);
}
nav.left ul li a:hover, nav.left ul li a:focus, nav.left ul li a:active {
	left: -2px;
}
nav.right ul li a:hover, nav.right ul li a:focus, nav.right ul li a:active {
	right: -2px;
}
nav ul li a.here {
	width: 130px;
	color: var(--white);
	border: 1px solid var(--orange);
	opacity: 0.9;
	z-index: 1000;
}
nav.left ul li a.here, nav.loginlable ul li a.here {
	left: -5px;
	background-color: rgba(var(--orange-rgb),0.85);
	filter: drop-shadow(-7px 0 5px rgba(var(--text-rgb),0.4));
}
nav.right ul li a.here {
	right: -5px;
	background-color: rgba(var(--orange-rgb),0.85);
	filter: drop-shadow(7px 0 5px rgba(var(--text-rgb),0.4));
}



/* Form fields and buttons */

select, input, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	background-color: var(--white);
}
select, input, textarea {
	border-radius: 2px;	/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
	border: 2px solid var(--navblue);
}
input[type=number] { 
	-moz-appearance: textfield;
	appearance: textfield;
	margin: 4px 0; 
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
	-webkit-appearance: none; 
	margin: 0; 
}
input.full {
	width: 100%;
}
select {
	background-image: url("../images/arrow_down.svg");
	background-position: right 10px center;
	background-size: 14px;
	background-repeat: no-repeat;
	border: 2px solid var(--navblue);
}
select:hover, input:hover, textarea:hover {
	border: 2px solid var(--lblue);
	cursor: pointer;
}
select:focus, input:focus, textarea:focus {
	border: 2px solid var(--lblue);
	cursor: pointer;
}
/*.login select, .login input {
	width: 13rem;
}*/
select, input, textarea {
	height: 38px;
	box-sizing: border-box;
	width: 14rem;
	padding: 0;
	padding-left: 0.6rem;
}
textarea {
	width: 180px;
	border-radius: 2px;
	padding-top: 6px;
}
button {
	position: relative;
	cursor: pointer;
	height: 40px;
	width: 40px;
	padding: 0;
	margin: 0;
/*	border: 1px solid rgba(var(--lblue-rgb),0.7);*/
	border-radius: 22px;
	background-color: var(--lblue);
	/*background-image: repeating-linear-gradient(45deg, transparent 0 3px, rgba(var(--llblue-rgb), 0.05) 4px 6px);*/
	color: var(--white);
	font-weight: 500;
	line-height: 40px;
	letter-spacing: 0.03em;
	text-shadow: 0 0 1px rgba(var(--dblue-rgb),0.2);
	text-align: center;
	vertical-align: middle;
	/*filter: drop-shadow(0 0 20px rgba(var(--dblue-rgb), 0.9));*/
}
button:hover, button:focus, button:active {
	background-color: var(--blue);
	filter: none;
}
button.search {
	background-image: repeating-linear-gradient(45deg, transparent 0 3px, rgba(var(--llblue-rgb), 0.1) 4px 6px), url("../images/search.svg");
	background-position: top left, center;
	background-size: cover, 16px auto;
	background-repeat: repeat, no-repeat;
}
button.long {
	width: 11em;
}
button.transparent {
	height: 16px;
	width: 16px;
	background-color: none;
	background: none;
}
label {
	display: inline-block;
}
.login label {
	width: 105px;
	font-weight: 500;
	font-size: 16px;
}

/* New record form */

.new fieldset, #drop_file_zone {
	border: 2px solid var(--lblue);
	border-radius: 20px;
}
.new fieldset {
	width: calc(100% - 5px);
	margin: 0 auto 70px auto;
	padding: 70px;
	background-color: var(--white);
}
.new fieldset.red {
	border: 2px solid var(--orange);
}
.new .transparent {
	position: relative;
	width: 100%;
	border: none;
	background-color: var(--white);
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.new fieldset legend, #drop_file_zone legend {
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: var(--white);
	background-color: var(--dblue);
	height: 30px;
	border-radius: 30px;
	font-weight: 400;
	line-height: 28px;
	font-style: normal;
	letter-spacing: 0.03em;
	padding: 0 15px;
}
.flex-line {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-end;
	height: auto;
}
.flex-line-page {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-end;
	height: auto;
}
.column {
	display: inline-block;
	width: 180px;
	vertical-align: top;
	line-height: 32px;
}
.new .column > input {
	margin: 0;
	border: 2px solid var(--navblue);
}
.flex-line p {
	line-height: 26px;
	color: var(--dblue);
}
.new hr {
	display: block;
	margin: 20px auto;
	border: 1px solid var(--navlblue);
}
.new hr.wide {
	margin: 40px auto;
}
.new label {
	height: 28px;
	width: 165px;
}
.new label.sml {
	width: 75px;
}
.new label.long {
	width: 240px;
}
.new p {
	margin: 6px 0;
	width: auto;
}
.new .last {
	margin-right: 0px;
}
/*.new .empty {
	width: 4rem;
}*/
.new .hidden {
	height: 0px;
	width: 0px;
}
.new .optional {
	color: var(--ltext);
}
.new .red {
	color: var(--orange);
}
.new .lblue {
	color: var(--lblue);
}
.new select, .new input, .new textarea {
	position: relative;
	border: 2px solid var(--navblue);
	border-radius: 2px;
	margin: 5px 75px 5px 0;
	height: 34px;
	padding: 0 3px;
	/*text-align: left;*/
}
.new textarea {
	padding-top: 4px;
}
.new input.empty {
	background-color: rgba(var(--blue-rgb), 0.07);
}
textarea.full {
	width: 100%;
	height: 200px;
	border: 4px solid var(--navblue);
}
.new select:disabled {
	color: var(--ltext);
}
.new .required {
	border: 2px solid var(--lblue);
}
.new button {
	width: 10em;
}
.new button.add {
	position: absolute;
	right: 80px;
	bottom: 200px;
	height: 80px;
	width: 80px;
	border-radius: 100%;
}
.new button:hover, .new button:focus, .new button:active {
	color: var(--white);
	background-color: var(--blue);
/*	border: 1px solid rgba(var(--blue),0.7);*/
}
.call_data {
	display: block;
	position: relative;
	border-radius: 20px;
	color: var(--text);
	line-height: 30px;
	width: 100%;
}

/* Table */
.new table select, .new table input, .new table textarea {
	position: relative;
	border: 2px solid var(--navblue);
	border-radius: 2px;
	margin: 0;
	height: 34px;
	/*text-align: left;*/
}
table {
	width: auto;
	min-width: 600px;
	margin: 0 auto;
	border-collapse: collapse;
}

.login table {
	border: none;
	box-shadow: none;
}
.login table ,.login th, .login td, .login tr {
	background-color: var(--lbg);
	border: none;
}
caption {
	width: auto;
	text-align: left;
	font-size: 38px;
	line-height: 50px;
	font-weight: 500;
	color: var(--blue);
	margin: 20px auto 20px auto;
}
caption.zero {
	height: 0;
	margin: 0;
	padding: 0;
}
thead {
	font-size: 13px;
	font-weight: 400;
	border: 2px solid var(--lblue);
}
th {
	padding: 10px 15px;
	color: var(--flag);
	text-align: center;
	height: 70px;
}
tr {
	background-color: var(--white);
	border-bottom: 2px solid var(--navblue);
}
thead tr {
	border-bottom: 2px solid var(--lblue);
}
tr.buttons {
	border-bottom: none;
}
tr:hover, tr:focus {
	background-color: rgba(var(--lblue-rgb), 0.1);
}
tr.add_row {
	border: 2px solid var(--navblue);
}
tr.add_row > td {
	color: var(--white);
}
tr.add_row input, tr.add_row select, tr.add_row textarea {
	border-color: var(--navblue);
	border-width: 2px;
}
tr.add_row input:hover, tr.add_row select:hover, tr.add_row textarea:hover {
	border-color: var(--lblue);
}
thead > tr:hover, thead > tr:focus, thead > tr:active, tr.add_row:hover, tr.add_row:focus, tr.add_row:active {
	background: none;
}
td {
	padding: 10px 8px;
	color: var(--text);
	border: none;
	vertical-align: middle;
}
td a {
	text-decoration: none;
	color: var(--text);
}
td a:visited {
	color: var(--text);
}
td a:hover {
	color: var(--lblue);
}
td a:focus {
	color: var(--lblue);
}
td a:active {
	color: var(--lblue);
}
td a img {
	height: 20px;
	width: auto;
	margin-top: 3px;
}
tr.add_row > td.blue {
	color: var(--blue);
}
.stat_table {
	width: 100%;
	table-layout: fixed;
	/*border: 2px solid var(--navblue);
	border-top: none;*/
	border: none;
}
.stat_table > thead {
	display: none;
}
.stat_table tr:hover, .stat_table tr:focus {
	background-color: var(--white);
}
.stat_table tr.remarks {
	height: 80px;
	break-inside: avoid;
}
.stat_table tr.dd {
	border-top: none;
	border-bottom: none;
}
.stat_table tr.dd:first-of-type {
	border-top: 2px solid var(--navblue);
}
.stat_table tr.dd:last-of-type {
	border-bottom: 2px solid var(--navblue);
}
/*.stat_table tr.empty_row {
	border-bottom: 2px solid var(--navblue);
}*/
.stat_table tr.buttons {
	border-top: 2px solid var(--navblue);
}
.stat_table td {
	box-sizing: border-box;
	position: relative;
	border: 2px solid var(--navblue);
	height: 55px;
	font-size: 16px;
	padding: 26px 0 2px 20px;
}

.stat_table tr.sign_upper, .stat_table tr.sign_upper > td, .stat_table tr.sign_bottom, .stat_table tr.sign_bottom > td {
	border-left: none;
	border-right: none;
} 
.stat_table tr.sign_upper, .stat_table tr.sign_upper > td {
	border-top: 2px solid var(--navblue);
	border-bottom: none;
	height: 0;
}
.stat_table tr.sign_bottom, .stat_table tr.sign_bottom > td {
	border-top: none;
 border-bottom: none;
	height: 40px;
	font-size: 14px;
	vertical-align: bottom;
	color: var(--blue);
}
.stat_table td:hover, .stat_table td:focus {
	background-color: rgba(var(--lblue-rgb), 0.04);
}
.stat_table td.one, .stat_table td.two, .stat_table td.full, .stat_table td.remark, .stat_table tr.subtitle > td {
	padding: 3px 2px;
} 
.stat_table td.one {
	width: 6.25%;
}
.stat_table td.two {
	width: 12.5%;
}
.stat_table td.four {
	width: 25%;
}
.stat_table td.eight {
	width: 50%;
}
.stat_table td.full {
	width: 100%;
}

.stat_table tr.sign {
	border: none;
}
.stat_table td.daily_delay {
	border-top: none;
	border-bottom: none;
	height: 40px;
	padding: 1px 3px;
}
.stat_table td.remark {
	padding-left: 7px;
}
.stat_table td.buttons {
	padding: 0;
	border: none;
}
.stat_table td.buttons:hover, .stat_table td.buttons:focus {
	background: none;
}
.stat_table tr.subtitle {
	/*display: table-header-group;*/
}
.stat_table tr.subtitle > td {
	height: 26px;
	font-size: 16px;
}
.stat_table tr.borderless {
 border-top: none;
 border-bottom: none;
}
.stat_buttons {
	padding: 20px 20px 40px 20px;
	background: none;
}
button.dblue {
	background-color: var(--dblue);
}
button.dblue:hover, button.dblue:focus {
	background-color: var(--blue);
}
.stat_table td.upper_right {
	border-top: none;
	border-right: none;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.stat_table td.left_pad {
	padding-left: 70px;
}
.stat_table td.daily {
	padding: 0;
}
.stat_table td.edit {
	background-color: var(--lblue);
	color: var(--white);
	height: 40px !important;
}
.stat_table td.empty {
	background-color: rgba(var(--blue-rgb), 0.07);
}
.stat_table td.halfempty {
	background-color: rgba(var(--orange-rgb), 0.1);
}
.stat_table td.center {
	text-align: center;
}
.stat_table td.middle {
	vertical-align: middle;
}
.stat_table td > input {
	width: 100%;
	height: 100%;
	border: none;
	padding: 5px 3px 5px 5px;
}
.stat_table td > input:hover, .stat_table td > input:focus {
	border-radius: 2px;
	background-color: var(--white);
}
.stat_table img {
	width: 300px;
	height: auto;
	margin-bottom: 10px;
}
.stat_table span.stat_label {
	position: absolute;
	top: 0;
	left: 3px;
	font-size: 14px;
}
.stat_table span.stat_column {
	display: inline-block;
	width: calc(50% - 15px);
}
.stat_table span.red {
	color: var(--orange);
}
.blue {
	color: var(--blue);
}
.blue:link, .blue:visited	{
	color: var(--blue);
}
.red:link, .red:visited {
	color: var(--orange);
}
.blue:focus, .blue:hover, .blue:active, .red:focus, .red:hover, .red:active {
	color: var(--lblue);
}
/* Basic formatting */

.sailed td, .sailed td a {
	color: rgba(var(--dblue-rgb), 0.7);
}
.sailed td {
	background-color: rgba(var(--navblue-rgb), 0.2);
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.justify {
	text-align: justify;
}
.ltext {
	color: var(--ltext);
}
.brighttext {
	color: var(--dblue);
}
.xsml {
	width: 45px;
}
.sml {
	width: 75px;
}
.short {
	width: 120px;
}
.mdl {
	width: 165px;
}
/* standard width is 12rem */
.long {
	width: 240px;
}
.xlong {
	width: 300px;
}
.xxlong {
	width: 330px;
}
.xxxlong {
	width: 675px;
}
.toprint {
	display: none;
}
.flex-line .signature {
	display: none;
}
table.narrow {
	width: 700px;
}
#drop_file_zone {
 background-color: rgba(var(--llblue-rgb),0.4);
	border: 2px dashed var(--dblue);
 width: 700px;
 height: 240px;
	margin: 120px auto 40px auto;
	padding: 80px 70px 70px 70px;									
	background-repeat:  no-repeat;
	background-size: contain;
	background-position:  top left;
}
#drop_file_zone button {
	font-size: 14px;
	font-weight: 600;
}
label.fileupload {
	line-height: 40px;
	vertical-align: middle;
	color: var(--blue);
}
input[type="file"],
input[type="file"]:visited,
input[type="file"]:hover,
input[type="file"]:focus,
input[type="file"]:active {
	width: 340px;
	height: 50px;
	color: var(--dblue);
	font-size: 14px;
	line-height: 50px;
	vertical-align: middle;
	margin: 0 10px 0 0;
	padding: 0;
 overflow: hidden; /* long file names overflow so just hide the end */
 outline: none;
 cursor: pointer;
 -webkit-appearance: none;
 -moz-appearance: none;
}

input[type="file"]:hover {
 background: rgba(var(--lblue-rgb), 0.3); /* I am using a light blue to indicate an interaction */
 border: none;
}

input[type="file"]:visited,
input[type="file"]:focus,
input[type="file"]:active {
	background: var(--white); /* Default back to white when focused. */
	border: none;
}
input[type="file"]:disabled,
input[type="file"]:read-only {
	margin: 0 10px 0 0;
	padding: 0;
	overflow: hidden; /* long file names overflow so just hide the end */
	background: none;
	outline: none;
	border: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
}

input[type="file"]:disabled:hover,
input[type="file"]:read-only:hover {
	background: rgba(var(--lblue-rgb), 0.3); /* I am using a light blue to indicate an interaction */
	border: none;
}

input[type="file"]:disabled:visited,
input[type="file"]:disabled:focus,
input[type="file"]:disabled:active,
input[type="file"]:read-only:visited,
input[type="file"]:read-only:focus,
input[type="file"]:read-only:active {
	background: var(--white); /* Default back to white when focused. */
	border: none;
}

/* IE UPLOAD BUTTON STYLE: This attempts to alter the file upload button style in IE.  Keep in mind IE gives you limited design control but at least you can customize its upload button.*/
::-ms-browse { /* IE */
	display: inline-block;
	width: 100px;
	height: 26px;
	margin: auto 10px auto 0;
	padding: 5px 10px;
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: var(--dblue);
	border: 2px solid var(--dblue);
	border-radius: 20px;
	outline: none;
	white-space: nowrap;
	cursor: pointer;
}
/* FIREFOX UPLOAD BUTTON STYLE */
::file-selector-button {/* firefox */
 display: inline-block;
	width: 100px;
	height: 40px;
	margin: auto 10px auto 0;
	padding: 5px 10px;
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: var(--dblue);
	border: 2px solid var(--dblue);
	border-radius: 20px;
	outline: none;
	white-space: nowrap;
	cursor: pointer;
 -webkit-appearance: button;
}
/* CHROME AND EDGE UPLOAD BUTTON STYLE */
::-webkit-file-upload-button { /* chrome and edge */
 display: inline-block;
	width: 100px;
	height: 40px;
	margin: auto 10px auto 0;
	padding: 5px 10px;
	font-family: tablet-gothic-narrow, jaf-bernino-sans-narrow, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: var(--dblue);
	border: 2px solid var(--dblue);
	border-radius: 20px;
	outline: none;
	white-space: nowrap;
	cursor: pointer;
 -moz-appearance: button;
}
/*#drag_upload_file #selectfile {
  display: none;
}*/
.noscreen {
	display: none;
}
input[type="date"]::-webkit-calendar-picker-indicator { 
	width: 10px;
	height: 10px;
	padding: 0;
	margin: -20px 0 0 0;
	z-index: 0;
}
input[type="time"]::-webkit-calendar-picker-indicator { 
	width: 10px;
	height: 10px;
	padding: 0;
	margin: -20px 0 0 0;
	z-index: 0;
}