.searchBox {
	display:inline-block;
	width:100%;
	font-size:8.0pt;
	vertical-align: middle;
	position: relative;
	z-index:1;
	
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	
	box-sizing: content-box;
	padding: 0px;
	margin: 0px;
	border: none;
	border-bottom: thin lightblue dashed;
}
@media print  {
	.searchBox {
		border: none;
		font-size:8.0pt;
	}
}

.searchBoxError {
	display:table-cell;
	width:100%;
	font-size:8.0pt;
	vertical-align: middle;
	position: relative;
	z-index:1;
	
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	
	box-sizing: content-box;
	padding: 0px;
	margin: 0px;
	border: thin red dashed;
}
@media print  {
	.searchBoxError {
		border: none;
		font-size:8.0pt;
	}
}
::-webkit-inner-spin-button { display: none; }
::-webkit-calendar-picker-indicator { width: 4px; }

.searchBoxClear {
	border:none;
	background-color: transparent;
	display: none;
	vertical-align: middle;
	position: absolute;
	float: right;
	outline: 0;
	z-index:2;
	cursor: pointer;
	text-align:right;
	width:0px;
	height:100%;
}

.searchBoxClear:after {
	content: "X";
	display: inline-block;
	width: 15px;
	height: 15px;
	position: absolute;
	float: right;
	background-color: #FA9595;
	z-index:2;
	right: 100%;
	top: 0px;
	bottom: 0px;
	margin: 0px;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
	color: white;
	font-weight: normal;
	font-size: 12px;
	box-shadow: 0 0 2px #E50F0F;
	cursor: pointer;
	align:right;
}
@media print  {
	.searchBoxClear:after {
		display: none;
	}
}

.resultsBoxContainer {
	float: left;
	position: absolute;
	background-color: AliceBlue;
	overflow:none;
	max-height: 192px;
	height: auto;
	cursor: default;
	line-height: 200%;
	font-size:8.0pt;
	display: none;
	border: thin solid black;
	padding-right:5px;
	z-index: 3;
}

.resultsBox {
	float: left;
	position: relative; 
	overflow-x:none; overflow-y:scroll;
	max-height: 192px;
	height: auto;
	line-height: 220%;
	font-size:9pt;
	width: 100%;
	background-color: transparent;
	cursor: default;
	padding-right:5px;
	border: none;
	-webkit-overflow-scrolling: touch;
}

.resultsCounter {
	background-color: none;
	position: relative;
	width: 100%;
	display:block;
	text-align:right;
	line-height: 100%;
	font-size:8.0pt;
}

.hoverLink {
	background-color: none;
	position: relative;
	width: 100%;
	display:block;
	margin-left:5px;
}

.hoverLink a {
	color: black;
	background-color: AliceBlue;
	width: 100%;
	position: relative;
}

.hoverLinkOver {
	position: relative;
	width: 100%;
	display:block;
	z-index:5;
	margin-left:5px;
	background-color:rgba(0, 255, 255, 0.5);
}

.dropDownBox {
	display:table-cell;
	width:100%;
	margin: 0px;
	padding: 0px;
	left:0px;
	border:none;
	text-align:left;
	appearance: none;
	-webkit-appearance: none;
 	font-size:8.0pt;
	vertical-align: middle;
	padding-left:0px;
}

.dropDownItem {
	line-height: 200%;
	font-size:8.0pt;
}

.multiLineBox {
	display:table-cell;
	width:100%;
	font-size:8.0pt;
	vertical-align: middle;
	border: none;
	border-bottom: thin lightblue dashed;
	resize: none;
}
@media print  {
	.multiLineBox {
		border: none;
	}
}

:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}


::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.spareInputBox {
	font-size:8.0pt;
	font-weight:500;
	font-style:normal;
	font-family: Roboto;
	color: black;
	text-decoration:none;
	text-align:left;
	vertical-align:middle;
	border: none;
	white-space:nowrap;
	margin: 0px;
	padding: 0px;
	width: 100%;
	border: none;
}

.spareInputBox::-webkit-input-placeholder {
	color:lightblue;
}
@media print  {
	.spareInputBox::-webkit-input-placeholder {
		color:transparent;
	}
	.spareInputBox:invalid {
		visibility: hidden;
	}
}