.divTable{
	display: table;
	width: 100%;
	border-top: 1px solid #999999;
	border-left: 1px solid #999999;
}
.divTableRow {
	display: table-row;
}

.divTableRowYellow {
	background-color: #edeacc !important;
	
}

.divTableRowYellowGrade {
	background-image: linear-gradient(#ddc174 0%, #f1e0ac 100%);
	color: #000000;
}

.divTableRow input{
	width: 150px;
	border-radius: 3px;
}
.divTableRow .city input{
	width: 150px;
}

.divTableRow .zip input{
	width: 50px;
}

.divTableRow .state input{
	width: 30px;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	display: table-cell;
	padding: 3px 10px;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}
.successForm {
	padding: 20px;
	background-color: #5bebb4;
	font-weight: bold;
	border: solid #497d61 1px;
	color: #000000;
}

.errorForm {
	padding: 20px;
	background-color: #f7c6c3;
	font-weight: bold;
	border: solid #d15212 1px;
	color: #000000;
	margin-bottom: 10px;
}

.messageForm {
	padding: 20px;
	background-color: #ddd;
	font-weight: 100;
	border: solid #8b8b8b 1px;
	color: #000000;
	margin-bottom: 10px;
}

.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Select some files';
  display: inline-block;
  background: linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.formButton {
	background: #012542;
	margin-top: 20px;
	border-radius: 3px;
	font-family: Lora;
	font-size: 16px;
	color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
}