﻿html,
body {
	overflow: auto;
}




/* Input and select styling */
input[type=text],
input[type=date],
select,
textarea {
	height: 30px;
	width: 100%;
	margin: 0;
	padding: 2px 4px;
	box-sizing: border-box;
	font-weight: 600;
	color: blue;
	text-transform: uppercase;
	border-radius: 0;
	border: 1px solid #ccc;
}

/* Appearance fixes for input[type=date] */
input[type=date] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	line-height: normal;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
	margin: 0;
	padding: 0;
}

/* Dropdown option styling */
optgroup,
option {
	font-weight: 600;
	color: blue;
	text-transform: uppercase;
}

/* Float-specific class for select */
select.clsFields {
	margin: 0;
	float: left;
}


input[type="text"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
	border: 2px solid blue;
	outline: none;
}


/* Tabs container */
#tabs {
	margin: 0 auto;
	/*width: 750px;*/
	min-width: 450px;
	min-height: 550px;
	max-width: 750px;
}

.ui-tabs-panel {
	height: 100%;
}

div.clstabs {
	min-height: 325px;
}

/* Fieldset and legend */
fieldset {
	background-color: transparent;
	border: 1px solid #1a563b;
	margin-right: 10px;
}

fieldset legend {
	margin-left: 5px;
	font-weight: 600;
	color: #1a563b;
}

/* Validation error styling */
label.error {
	display: inline;
	color: red;
	font-style: italic;
	font-weight: 600;
	padding-left: 5px;
}

div.error {
	display: none;
}

input.error,
select.error {
	border: 1px solid red;
}

/* Checkbox/radio */
/* Checkbox / Radio */
input[type=checkbox],
input[type=radio] {
	vertical-align: text-bottom;
	position: relative;
	top: -1px;
	accent-color: blue;

}

/* Style the label when its radio is checked */
input[type="radio"]:checked+label {
	color: blue;
	font-weight: 600;
}

label {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

/* Label classes */
.clslabelR,
.clslabelR2,
.clslabelL {
	white-space: nowrap;

	font-weight: 600;
	height: 31px;
}

.clslabelR {
	padding: 0 5px 0 6px;
	text-align: right;
	vertical-align: middle;
}

.clslabelR2 {
	padding: 0 0 0 5px;
	text-align: right;
}

.clslabelL {
	padding: 0 5px;
	text-align: left;
	vertical-align: middle;
}

/* Column sizing */
.clsCol2 {
	width: 210px;
}

/* Button group */
.clsSubResetbtns {
	float: right;
	position: absolute;
	bottom: 10px;
	right: 10px;
}

/* Info cells */
td.clsinfo {
	font-weight: normal;
	padding: 20px;
	font-size: .90rem;
	color: #003366;

}

td.clsNoBorderL {
	text-align: left;
}

td {
	vertical-align: middle;
}

/* Autocomplete */
.ui-autocomplete {
	background-color: #FFFFFF;
	color: blue;
	line-height: 1.2;
	border-radius: 0;
	border-color: blue;
	font-weight: 600;
}

.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper {
	text-decoration: none;
	display: block;
	line-height: 1.3;
	color: blue;
	font-weight: 600;
	margin: 0;
	padding: 2px 4px;

}

.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.ui-state-focus,
.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
	margin: -1px;
	border: 1px solid #d0cc8c;
	background: Highlight;
	color: white !important;
	font-weight: 600 !important;
	border-radius: 0;
}

/* .more links */
.more {
	color: red;
	border-radius: 0;
	margin: 0;
	padding: 2px 2px;
	font-weight: 600;
}

 
/* ≤768px */
@media screen and (max-width: 768px) {
	html {
		font-size: 80%;
	}
}

/* ≤600px */
@media screen and (max-width: 600px) {
	html {
		font-size: 70%;
	}
}

/* ≤440px */
@media screen and (max-width: 440px) {
	html {
		font-size: 60%;
	}
}

/* ≤360px (optional tighter scaling) */
@media screen and (max-width: 360px) {
	html {
		font-size: 55%;
	}
}