/* Below = Privacy Policy Modal rules */
.modal-header {
	text-align: center;
	background-color: rgba(240,240,240,1.00)
}
.mainText #privacyPolicy h3 {
	margin-top: 0px;
	color: #000;
	padding-bottom: 0px;
	font-style: normal;
	font-size: 1.1em;
}
.modal-header h3#modalLabel {
	font-size: 1.25em;
	text-decoration: underline;
	color: rgb(16,119,65);
	font-weight: bold;
}
#privacyPolicyContent {
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 15px;
	line-height: normal;
	font-size: .95em;
}
#privacyPolicyContent p {
	line-height: 1.2em;
}
#privacyPolicyContent p:last-child {
	margin-bottom: 0px;
}
#privacyPolicyContent h2 {
	text-align: left;
	text-decoration: underline;
	margin-top: 9px;
	margin-bottom: 4px;
	font-size: 1em;
	color: #2282E6;
	font-weight: normal;
}
#privacyPolicyContent h2:first-child {
	margin-top: 0px;
}
#privacyPolicyContent li {
	margin-left: 25px;
	padding-top: 5px;
}
/*#privacyPolicyContent li:first-child {
	padding-top: 0px;
	margin-top: -10px;
}*/
#privacyPolicyContent h4 {
  font-style: italic;
  font-size: 1.5rem;
  font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
  font-weight: 400;
  text-align: center;
  color: #2C7A07;
  margin-top: 30px;
}


/* Below = Scroll Button rules */
#scrollDiv {
  position: fixed;
  bottom: 50px;
  right: 25px;
  z-index: 10;
}
#scrollButton {
  display: block;
  background-color: #fea700;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  opacity: .7;
  padding-top: 0px;
}
  @media screen and (min-width:768px) {
    #scrollButton {
      bottom: 25px;
    }
  }

#scrollButton svg {
  fill: #FFF;
  width: 30px;
}
#scrollButton {-webkit-transform: scale(0);transform: scale(0);transition: transform 1s;}
#scrollButton.visible {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: transform 1s;
}
#scrollButton:hover {
  opacity: 1;
} 
