@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Open+Sans:ital,wght@0,400;0,600;1,400;1,600&family=Oswald:wght@400;600&display=swap');

:root {
	--KKTblue: #0071b7;
	--KKTbluetransp: #0071b780;
	--KKTgray1: #4e4e4e;	
	--KKTgray2: #a3a3a3;	
	--KKTgray3: #cfcfcf;	
	
	--H1color: #0071b7;
	--H2color: #0071b7;
	--H3color: #000;
	--H4color: #000;

	--Pcolor: #000;
	--LIcolor: #000;
	--LINKcolor: #0071b7;
	
	--FTRtitlescolor: #FFF;
	--FTRtextcolor: #FFF;
	--FTRlinkcolor: #FFF;
	
	--BLOCKPAD: 60px 0 90px;

}


body {
  font-family: "Open Sans", "Myriad Pro", "Gill Sans", "Gill Sans MT", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  color: var(--BDFblack);
}
/*
a:hover img {
   opacity: 0.8;
   transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;
}
*/
h1 {
  font-family: Oswald, "Myriad Pro", "Gill Sans", "Gill Sans MT", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-size: 36pt;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10pt;
  color: var(--H1color);
}
h2 {
  font-family: Oswald, "Myriad Pro", "Gill Sans", "Gill Sans MT", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-weight: 600;
  margin-top: 0;
  font-size: 30pt;
  margin-bottom: 10pt;
  color: var(--H2color);
}
h3 {
  font-family: Oswald, "Myriad Pro", "Gill Sans", "Gill Sans MT", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  margin-top: 0;
  font-size: 18pt;
  font-weight: 600;
  margin-bottom: 10pt;
  color: var(--H3color);
}
h4 {
  font-family: Oswald, "Myriad Pro", "Gill Sans", "Gill Sans MT", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-weight: 400;
  margin-top: 0;
  font-size: 14pt;
  margin-bottom: 10pt;
  color: var(--H4color);
}
p {
  font-weight: 300;
  margin-top: 0;
  font-size: 14pt;
  color: var(--Pcolor);
}
strong {
	font-weight: bold;
}
ul {
  padding-left: 18pt;
  margin-bottom: 20px;
}
li {
  font-weight: 300;
  font-size: 14pt;
  list-style: square;
  color: var(--LIcolor);
  margin-bottom: 10pt;
}
a, a:visited {
  color: var(--LINKcolor);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
.smaller {
  font-size: medium;
}