@charset "utf-8";

div.main{
	width: 80%;
	min-width: 900px;
	margin: 0 auto 0 auto;
	border-style: solid;
	border-color: #ff0000;
	border-width: 0px;
}

div.autocomplete{
	position: relative;
	display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

div.btnOption{
	background-image: linear-gradient(#ddd, #ffffff);
	border-style: solid;
	border-color: #ddd;
	border-radius: 5px;
	border-width: 1px;
	margin: 0 10px 20px 10px;
	float: left;
	clear: none;
	width:45%;
	height: 40px;
	text-indent: -25px;
	padding-left: 25px;
	vertical-align: middle;
}

div.btnOptionEmail{
	background-image: linear-gradient(rgb(243, 243, 243), #ffffff);
	border-style: solid;
	border-color: #ddd;
	border-radius: 5px;
	border-width: 1px;
	margin: 0 0 10px 0;
	float: left;
	clear: none;
	width:100%;
	height: 40px;
	vertical-align: middle;
}

div.customButton{
	background-color: #e7e7e7;
	border-style: solid;
	border-color: black;
	border-radius: 4px;
	border-width: 1px;
	height: 20px;
	cursor: default;
	display: flex;
	align-items: center;
	justify-content: center;
}

div.errors{
	color: #ff0000;
	font-family: Arial Narrow, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-decoration: underline;
	
	margin: 20px 0px 0px 20px;
}

div.header{
	width: 100%;
	border-bottom-style: solid;
	border-bottom-color: #3366b5;
	border-bottom-width: 6px;
	margin-bottom: 10px;
}

div.fauxNav{
	background-color: #bcd4f7;
	text-decoration: none;
	font-weight: bold;
	font-size: 20px;
	padding: 5px 16px;
	color: #000000;
	width: 20%;
}

div.topNav{
	position: sticky;
	top: 0;
	font-family: Arial Narrow, Helvetica, sans-serif;
	background-color: #3366b5;
	height: 28px;
}

div.topNav a{
	padding: 5px 16px;
	text-decoration: none;
	font-weight: bold;
	color: #ffffff;
	
}

div.topNav a.active{
	background-color: #bcd4f7;
	text-decoration: none;
	font-weight: bold;
	font-size: 20px;
	color: #000000;
}

div.topNav a:hover{
	background-color: #bcd4f7;
	text-decoration: none;
	font-weight: bold;
	font-size: 20px;
	color: #000000;
}

h2{
	font-family: Arial Narrow, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 24px;
	text-transform: uppercase; 
	color: #3366b5;
}

p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

p.error{
	color: red;
	font-size: 20px;
	font-weight: bold;
}

p.script{
	color: red;
	font-size: 20px;
	font-weight: bold;
}

td{
	font-family: Arial, Helvetica, sans-serif;
	padding: 0 10px 0 10px;
}

td.column1{
	min-width: 200px;
}