html {}
body {
	background-color: #FCFCFC;
	color: #212121;
	font-family: 'Lato', 'Source Sans Pro', sans-serif, Open Sans, Helvetica, "Trebuchet MS", Arial;
	font-weight: 300;
	margin:0;
 	font-size: 15pt; /* fallback, specify before non-fallback */
	font-size: 2.3vh;
	color: #212121;
	line-height: 1.4em;
}
h1 {
	color: #E91E63;
	font-size: 32pt;
}
h2 {
	color: #E91E63;
	font-size: 24pt;
}
h3 {
	color: #212121;
	font-size: 16pt;
}
.title-splash {
	color: #FFF;
	font-family: 'Averia Sans Libre', Helvetica;
	/* letter-spacing: 0.02em; */
	font-size: 40pt; /* fallback, specify before non-fallback */
	font-size: 10vh;
	font-weight: 300;
	line-height: 8vh;
	line-height: 1.1em;
}
.subTitle-splash {
	color: #FFF;
	font-family: 'Lato', helvetica;
	font-size: 5.5vh;
	font-weight: 300;
	line-height: 8vh;
	text-align: left;
}
iframes {
margin-top: 20px;
margin-bottom: 30px;
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 4px 4px 14px #000;
-webkit-box-shadow: 4px 4px 14px #000;
box-shadow: 4px 4px 14px #000;
} 
.title-section {
	color: #FFF;
	font-size: 40pt; /* fallback, specify before non-fallback */
	font-size: 5.7vh;
	line-height: 1.4em;
}
.subtitle-section {
	color: #FFF;
	font-size: 24pt; /* fallback, specify before non-fallback */
	font-size: 3.4vh;
	line-height: 1.8em;
	margin-top:2vh;
}
.centerVertical {
	position:absolute; 
	margin:0; 
	top:50%; 
	-ms-transform:translateY(-50%); 
	transform:translateY(-50%);
}
.parallax {
	/* need to set background-image and height in the related div */
	background-attachment: fixed;
	background-repeat: no-repeat;
}
.footer {
	margin:auto;	
	padding: 0 5vw;
	max-width:1080px;
	color: #B5B5B5;
	font-size: 10pt; /* fallback, specify before non-fallback */
	font-size: 1.5vh;
	font-family: sans-serif;
}
.navbar-top {
	right: 0;
	left: 0;
	color: #FFF;
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}
.navbar-top > tbody > tr > td {
	/* border:5px solid white; */
}
.sticky {
	z-index: 500;
	position: fixed;
	width: 100%;
	top:0;
}
.anchor {
	display:block; 
	position:relative; 
	top:-95px;	/* offset for sticky header height */
}
.button-accent {
	background-color: #ffc107;
	border: none;
	color: #212121;
	border:0;
	cursor:pointer;
	font-family: 'Lato', 'Source Sans Pro', sans-serif, Open Sans, Helvetica, "Trebuchet MS", Arial;
	font-weight: 400;
	padding: 0 25px 0 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}
.button-accent:hover {
	background-color: #D7A200;
}
.arrow-char::after {
  content: "\21AA \FE0E"; /* \FE0E is Safari implementation to ensure char isn't boxed */
}
/* Custom bullet points */
ul {
  list-style: none; /* Remove default bullets */
}
ul li::before {
	padding: 0 1vw 0 1vw;
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: #A6A6A6; /* Change the color */
	display: inline-block; /* Needed to add space between the bullet and the text */
	font-size: .8em;
	vertical-align:top;
	width: 1em; /* Also needed for space (tweak if needed) */
}
.stroke {
	text-shadow:
		-3px -3px 0 #212121,
		 0	 -3px 0 #212121,
		 3px -3px 0 #212121,
		 3px	0	 0 #212121,
		 3px	3px 0 #212121,
		 0	3px 0 #212121,
		-3px	3px 0 #212121,
		-3px	0	 0 #212121;
}
/* Collapse the table into vertical cells on mobile */
@media all and (max-width:1280px) {
	.flextable {
		width:100% !important;
	}
	.flextable > tbody > tr > td {
		display: block;
	}
}

 /* Show only on small screens (ie, mobile) */
.mobileOnly {
	display: none;
}
@media all and (max-width:800px) { 
	.mobileOnly {
		display: block;
	}
}

 /* Show only on medium/large screens (ie, non-mobile) */
.tabletDesktopOnly {
	display: none;
}
@media all and (min-width:801px) { 
	.tabletDesktopOnly {
		display: block;
	}
}

 /* Show only on small/medium screens */
.mobileTabletOnly {
	display: none;
}
@media all and (max-width:1280px) { 
	.mobileTabletOnly {
	display: block;
	}
}
 /* Show only on large screens */
.desktopOnly {
	display: none;
}
@media all and (min-width:1281px) { 
	.desktopOnly {
	display: block;
	}
}

/* Text input hint styling */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: #757575;
	font-size:18pt;
	font-family: 'Lato', 'Source Sans Pro', sans-serif, Open Sans, Helvetica, "Trebuchet MS", Arial;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	 color: #757575;
	 opacity: 1;
	 font-size:18pt;
	 font-family: 'Lato', 'Source Sans Pro', sans-serif, Open Sans, Helvetica, "Trebuchet MS", Arial;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	 color: #757575;
	 opacity: 1;
	 font-size:18pt;
	 font-family: 'Lato', 'Source Sans Pro', sans-serif, Open Sans, Helvetica, "Trebuchet MS", Arial;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	 color: #757575;
	 font-size:18pt;
	 font-family: 'Lato', 'Source Sans Pro', sans-serif, Open Sans, Helvetica, "Trebuchet MS", Arial;
}
::-ms-input-placeholder { /* Microsoft Edge */
	 color: #757575;
	 font-size:18pt;
	 font-family: 'Lato', 'Source Sans Pro', sans-serif, Open Sans, Helvetica, "Trebuchet MS", Arial;
}

::placeholder { /* Most modern browsers support this now. */
	 color: #757575;
	 font-size:18pt;
	 font-family: 'Lato', 'Source Sans Pro', sans-serif, Open Sans, Helvetica, "Trebuchet MS", Arial;
}

a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: underline;
}


.footerLink a:link {
	text-decoration: none;
	text-decoration-color: #F8F8F8;
	color: #F8F8F8;
}
.footerLink a:visited {
	text-decoration: none;
	text-decoration-color: #F8F8F8;
	color: #F8F8F8;
}
.footerLink a:hover {
	text-decoration: underline;
	text-decoration-color: #F8F8F8;
	color: #F8F8F8;
}
.footerLink a:active {
	text-decoration: underline;
	text-decoration-color: #F8F8F8;
	color: #F8F8F8;
}


/* Modal Content/Box */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 600; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
}
.modal-content {
	background-color: #fefefe;
	border-radius: 16px;
	margin: 15vh auto; /* 10% from the top and centered */
	border: 4px solid rgba(0,0,0,0.75);
	width: 85%; /* Could be more or less, depending on screen size */
	max-width: 800px;
	position:relative;
}

/* The Close Button */
.close {
	position:absolute;
	top:8pt;
	right:8pt;
	height:36pt;
	width:36pt;
	border-radius: 18pt;
	background-color: #212121; /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	z-index: 700; /* Sit on top */
	text-align:center;
	color: #aaa;
	display: table; 
	font-size: 36pt; /* fallback, specify before non-fallback */
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}