/*************************************************/
/*                   MAIN BODY                   */
/*************************************************/
@font-face {
	font-family: 'Lato', sans-serif;
	font-weight:200;
	font-style:normal;
}
* {
	padding:0;
	margin:0;
	box-sizing: border-box;
}
html, body {
	height:100%;
}
.skrollr-desktop body {
	height:100% !important;
}
body {
	font-family: 'Lato', sans-serif;
	font-weight: 200;
	font-size: 20px;
/*	background: transparent; */
}
body a {
	color: #228B22;
	text-decoration: none;
}
body a:hover {
	cursor: pointer;
	text-decoration: underline;
}
p {
	margin:1em 0;
}
img {
	border: none;
	text-decoration: none;
}

/***********************************************/
/* ABSOLUTE SECTIONS OUTSIDE OF SKROLLING BODY */
/***********************************************/
.parallax-image-wrapper {
	position:fixed;
	left:0;
	width:100%;
	overflow:hidden;
}
.parallax-image-wrapper-50 {
	height:50%;
	top:-50%;
}
.parallax-image-wrapper-100 {
	height:100%;
	top:-100%;
}
.parallax-image {
	display:none;
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.parallax-image-50 {
	height:200%;
	top:-50%;
}
.parallax-image-100 {
	height:100%;
	top:0;
}
.parallax-image.skrollable-between {
	display:block;
}
.no-skrollr .parallax-image-wrapper {
	display:none !important;
}

/*******************************/
/* RELATIVE SCROLLING SECTIONS */
/*******************************/
#skrollr-body {
	height:100%;
	overflow:visible;
	position:relative;
}
.gap {
	background:transparent center no-repeat;
	background-size:cover;
}
.skrollr .gap {
	background:transparent !important;
}
.gap-50 {
	height:50%;
}
.gap-100 {
	height:100%;
}
.header, .content {
	background:#FFFFFF;
	padding:1em;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
.content-full {
	height:100%;
}
.footer {
	padding:1em;
	text-align:center;
}

/**************************/
/* MOBILE NAVIGATION MENU */
/**************************/
.navbar {
	z-index: 1000;
	width: 100%;
	min-height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(34, 139, 34, 0.5);
	color: #fff;
	padding: 0 24px;
	margin: 0;
	position: fixed;
}
.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	color: #fff;
}
.nav-title {
	font-size: 1.5rem;
	color: #fff;
	text-align: left;
	text-decoration: none;
	vertical-align: top;
	top: 6px;
	left: 0px;
}
.nav-link {
	text-decoration: none;
	color: #fff;
	padding: 0 5px;
	display: block;
}
.nav-link:hover {
	text-decoration: underline;
}
.hamburger {
	display: none;
	cursor: pointer;
}
.bar {
	display: block;
	height: 3px;
	width: 25px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #fff;
}
@media(max-width: 700px) { 

	/*** When width of device is small use hamburger menu ***/

	.hamburger {
		display: block;
	}
	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 50px;
		gap: 0;
		flex-direction: column;
		background-color: rgba(34, 139, 34, 0.5);
		width: 100%;
		text-align: center;
		transition: 0.3s;
	}
	.nav-item {
		margin: 16px 0;
	}
	.nav-menu.active {
		left: 0;
	}
}

/***********************************/
/* FOOOTER AND FOOTER MENU SECTION */
/***********************************/
.footMenu {
	position: relative;
    bottom: 50px;
    height: 50px;
	z-index: 1000;
	width: 100%;
	background-color: rgba(34, 139, 34, 0.5);
    margin: 0;
    padding: 0 24px;
    align-items: middle;
    text-align: right;
}
.inner {
	display: inline-block;
	width: 80%;
	height: 50px;
	margin: 0;
	padding: 10px 0;
	text-align: right;
}
.footnav-spacer {
	height: 50px; 
	margin: 0;
	text-decoration: none;
    text-align: center;
	color: #fff;
}
.footnav-link {
	height: 50px; 
	margin: 0;
	text-decoration: none;
    text-align: center;
	color: #fff;
}
.footnav-link:hover {
	text-decoration: underline;
}
.footIcon {
	vertical-align: middle;
	width: 25px;
	height: 25px;
}
.footIcon-link {
	height: 50px; 
	margin: 0;
	text-decoration: none;
    text-align: center;
	color: #fff;
}
.footIcon-link:hover {
	text-decoration: none;
}

/**********************/
/* TITLE AND HEADINGS */
/**********************/
.myTitle {
	font-family: 'Open Sans', sans-serif;
	font-weight: 100;
	color: #FFFFFF;
	font-size: 72px;
	text-align: center;
	width: 100%;
	position: relative;
	letter-spacing: -1px;
	vertical-align: middle;
}
.gap .myTitle a {
	color: #FFFFFF;
	text-decoration: none;
}
.gap .myTitle a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
h1, h2 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 100;
	margin:0 0 15px 0;
}
h1 {
	font-size: 36px;
	line-height: 100%;
	text-align: left;
}
h2 {
	font-size: 24px;
	text-align: left;
}
.expander {
	color: #228B22;
	text-decoration: none;
	border: none;
}
.expander:hover {
	text-decoration: underline;
}
.fblike {
	border: none;
	overflow: hidden;
	height: 35px;
	width: 100px;
	padding: 10px 0px;
}

/*******************/
/* TABLES SETTINGS */
/*******************/
table {
	font-size: 16px;
}
td {	
	padding: 10px;
}
.ctable td:first-child {
	width: 100px;
	text-align: right;
}
.ctable td {
	vertical-align: top;
	padding: 5px 5px;
}

/*****************************************/
/* LAYERS FOR EXPAND & COLLAPSE SECTIONS */
/*****************************************/
.layer1, .layer2 {
	margin: 0;
	padding: 0;
	width: 100%;
}
.heading1, .heading2 {
	margin: 1px;
	padding: 3px 10px;
	cursor: pointer;
	position: relative;
	text-align: left;
	color: #1783C7;
}
.heading1:hover, .heading2:hover {
	text-decoration: underline;
}	
.content1, .content2 {
	padding: 5px 10px;
	display: none;
}