﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
nav[role=navigation] {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000; /* Ensures it stays on top of other content */
}
/* Optional: Add margin-top to body to prevent content from being hidden behind the menu */
body {
	padding-top: 50px; /* Adjust this value based on your menu's height */
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #4E5869;
}
#cssmenu:after, #cssmenu > ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#cssmenu #menu-button {
	display: none;
}
#cssmenu {
	z-index: 100;
	width: auto;
	font-family: 'Open Sans',Helvetica,sans-serif;
	background: #6f7d94;
	background: -moz-linear-gradient(top,#818da1 0%,#5d697d 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#818da1),color-stop(100%,#5d697d));
	background: -webkit-linear-gradient(top,#818da1 0%,#5d697d 100%);
	background: -o-linear-gradient(top,#818da1 0%,#5d697d 100%);
	background: -ms-linear-gradient(top,#818da1 0%,#5d697d 100%);
	background: linear-gradient(to bottom,#818da1 0%,#5d697d 100%);
}
#cssmenu > ul {
	background: url(bg.png);
	box-shadow: inset 0 -3px 0 rgba(0,0,0,.05);
}
#cssmenu.align-right > ul > li {
	float: right;
}
#cssmenu > ul > li {
	float: left;
	display: inline-block;
}
#cssmenu.align-center > ul {
	float: none;
	text-align: center;
	font-size: 0;
}
#cssmenu.align-center > ul > li {
	float: none;
}
#cssmenu.align-center ul ul {
	text-align: left;
}
#cssmenu > ul > li > a {
	padding: 18px 25px 21px 25px;
	border-right: 1px solid rgba(80,80,80,.12);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#cssmenu > ul > li:hover > a, #cssmenu > ul > li > a:hover, #cssmenu > ul > li.active > a {
	color: #cae5fd;
	background: #68758c;
	background: rgba(0,0,0,.1);
}
#cssmenu > ul > li.has-sub > a {
	padding-right: 45px;
}
#cssmenu > ul > li.has-sub > a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-top-color: #fff;
	right: 17px;
	top: 22px;
}
#cssmenu > ul > li.has-sub.active > a::after, #cssmenu > ul > li.has-sub:hover > a {
	border-top-color: #cae5fd;
}
#cssmenu ul ul {
	position: absolute;
	left: -9999px;
	top: 60px;
	z-index: 9999;
	padding-top: 6px;
	font-size: 13px;
	opacity: 0;
	-webkit-transition: top 0.2s ease,opacity 0.2s ease-in;
	-moz-transition: top 0.2s ease,opacity 0.2s ease-in;
	-ms-transition: top 0.2s ease,opacity 0.2s ease-in;
	-o-transition: top 0.2s ease,opacity 0.2s ease-in;
	transition: top 0.2s ease,opacity 0.2s ease-in;
}
#cssmenu.align-right ul ul {
	text-align: right;
}
#cssmenu > ul > li > ul::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-bottom-color: #808da1;
	top: -4px;
	left: 20px;
}
#cssmenu.align-right > ul > li > ul::after {
	left: auto;
	right: 20px;
}
#cssmenu ul ul ul::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-right-color: #808da1;
	top: 11px;
	left: -4px;
}
#cssmenu.align-right ul ul ul::after {
	border-right-color: transparent;
	border-left-color: #808da1;
	left: auto;
	right: -4px;
}
#cssmenu > ul > li > ul {
	top: 120px;
}
#cssmenu > ul > li:hover > ul {
	top: 52px;
	left: 0;
	opacity: 1;
}
#cssmenu.align-right > ul > li:hover > ul {
	left: auto;
	right: 0;
}
#cssmenu ul ul ul {
	padding-top: 0;
	padding-left: 6px;
}
#cssmenu.align-right ul ul ul {
	padding-right: 6px;
}
#cssmenu ul ul > li:hover > ul {
	left: 180px;
	top: 0;
	opacity: 1;
}
#cssmenu.align-right ul ul > li:hover > ul {
	left: auto;
	right: 100%;
	opacity: 1;
}
#cssmenu ul ul li a {
	text-decoration: none;
	font-weight: 400;
	padding: 11px 25px;
	width: 180px;
	color: #fff;
	background: #808da1;
	box-shadow: 0 2px 2px rgba(0,0,0,.1),1px 1px 1px rgba(0,0,0,.1),-1px 1px 1px rgba(0,0,0,.1);
}
#cssmenu ul ul li:hover > a, #cssmenu ul ul li.active > a {
	color: #cae5fd;
}
#cssmenu ul ul li:first-child > a {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
#cssmenu ul ul li:last-child > a {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
#cssmenu > ul > li > ul::after {
	position: absolute;
	display: block;
}
#cssmenu ul ul li.has-sub > a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-left-color: #fff;
	right: 17px;
	top: 14px;
}
#cssmenu.align-right ul ul li.has-sub > a::after {
	border-left-color: transparent;
	border-right-color: #fff;
	right: auto;
	left: 17px;
}
#cssmenu ul ul li.has-sub.active > a::after, #cssmenu ul ul li.has-sub:hover > a::after {
	border-left-color: #cae5fd;
}
#cssmenu.align-right ul ul li.has-sub.active > a::after, #cssmenu.align-right ul ul li.has-sub:hover > a::after {
	border-right-color: #cae5fd;
	border-left-color: transparent;
}
@media all and (max-width:800px),only screen and (-webkit-min-device-pixel-ratio:2) and (max-width:1024px),only screen and (min--moz-device-pixel-ratio:2) and (max-width:1024px),only screen and (-o-min-device-pixel-ratio:2/1) and (max-width:1024px),only screen and (min-device-pixel-ratio:2) and (max-width:1024px),only screen and (min-resolution:192dpi) and (max-width:1024px),only screen and (min-resolution:2dppx) and (max-width:1024px){
#cssmenu {
	background: #6f7d94;
}
#cssmenu > ul {
	display: none;
}
#cssmenu > ul.open {
	display: block;
	border-top: 1px solid rgba(0,0,0,.1);
}
#cssmenu.align-right > ul {
	float: none;
}
#cssmenu.align-center > ul {
	text-align: left;
}
#cssmenu > ul > li, #cssmenu.align-right > ul > li {
	float: none;
	display: block;
}
#cssmenu > ul > li > a {
	padding: 18px 25px 18px 25px;
	border-right: 0;
}
#cssmenu > ul > li:hover > a, #cssmenu > ul > li.active > a {
	background: rgba(0,0,0,.1);
}
#cssmenu #menu-button {
	display: block;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	padding: 18px 25px 18px 25px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: url(bg.png);
	cursor: pointer;
}
#cssmenu ul ul, #cssmenu ul li:hover > ul, #cssmenu > ul > li > ul, #cssmenu ul ul ul, #cssmenu ul ul li:hover > ul, #cssmenu.align-right ul ul, #cssmenu.align-right ul li:hover > ul, #cssmenu.align-right > ul > li > ul, #cssmenu.align-right ul ul ul, #cssmenu.align-right ul ul li:hover > ul {
	left: 0;
	right: auto;
	top: auto;
	opacity: 1;
	width: 100%;
	padding: 0;
	position: relative;
	text-align: left;
}
#cssmenu ul ul li {
	width: 100%;
}
#cssmenu ul ul li a {
	width: 100%;
	box-shadow: none;
	padding-left: 35px;
}
#cssmenu ul ul ul li a {
	padding-left: 45px;
}
#cssmenu ul ul li:first-child > a, #cssmenu ul ul li:last-child > a {
	border-radius: 0;
}
#cssmenu #menu-button::after {
	display: block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	content: '';
	position: absolute;
	height: 3px;
	width: 22px;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	right: 25px;
	top: 18px;
}
#cssmenu #menu-button::before {
	display: block;
	content: '';
	position: absolute;
	height: 3px;
	width: 22px;
	border-top: 2px solid #fff;
	right: 25px;
	top: 28px;
}
#cssmenu > ul > li.has-sub > a::after, #cssmenu ul ul li.has-sub > a::after {
	display: none;
}
}
#cssmenu ul ul {
	z-index: 999;
}
.container {
	width: 100%;
	max-width: 1160px;
	background-color: #fff;
	padding-top: 50px;
	margin-left: auto;
	margin-right: auto;
}
body {
	width: 100%;
	font: 100%/1.4 Verdana,Arial,Helvetica,sans-serif;
	background-color: #4E5869;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0;
	padding: 0;
	color: #000;
	z-index: 1;
}
/* Style each FAQ box */
details {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-bottom: 12px;
	background-color: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	overflow: hidden; /* Keeps content inside the rounded corners */
}
/* Style the question bar */
summary {
	padding: 16px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
/* Removes default browser arrow */display: flex;
	justify-content: space-between;
	align-items: center;
}
/* Removes default arrow in Safari */
summary::-webkit-details-marker {
	display: none;
}
/* Add a custom plus (+) or arrow icon using CSS */
summary::after {
	content: "＋";
	font-size: 1.1rem;
	transition: transform 0.2s ease;
}
/* Change icon when the box is open */
details[open] summary::after {
	transform: rotate(45deg); /* Turns the plus into an 'X' */
}
/* Style the answer text area */
details p {
	padding: 0 16px 16px 16px;
	margin: 0;
	color: #4a5568;
	line-height: 1.6;
}
ol {
	padding: 0;
	margin: 0;
	text-align: left;
}
h1 {
	margin-top: 0;
	margin-bottom: 0;;
	padding-right: 0;
	padding-left: 0;
	letter-spacing: 2pt;
	line-height: 135%;
	font: small Arial,Helvetica,sans-serif;
	font-size: 22pt;
	font-style: italic;
	font-weight: 700;
	color: rgb(255,255,255);
	text-shadow: 2px 8px 6px rgba(0,0,0,.2),0 -5px 35px rgba(255,255,255,.3);
}
h2, h4 {
	margin-top: 0;
	margin-bottom: 0;;
	padding-right: 0;
	padding-left: 12px;
	letter-spacing: 2pt;
	line-height: 125%;
	color: rgb(0,0,102);
	text-shadow: 2px 6px 6px rgba(0,0,0,.2),0 -5px 20px rgba(255,255,255,.3);
}
h3, h5 {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 14pt;
	font-weight: 700;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 4px;
	margin-top: 10px;
	margin-bottom: 10px;
	letter-spacing: 2pt;
	text-align: center;
	line-height: 125%;
	color: rgb(0,0,102);
	text-shadow: 2px 4px 6px rgba(0,0,0,.2),0 -5px 20px rgba(255,255,255,.3);
}
h6 {
	line-height: 125%;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 12pt;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0;;
	padding-right: 0;
	padding-left: 0;
	letter-spacing: 1pt;
	color: rgb(0,0,102);
	text-shadow: 2px 6px 4px rgba(0,0,0,.2),0 -5px 35px rgba(255,255,255,.3);
}
p {
	margin-top: 0;
	margin-bottom: 0;
	padding-right: 12px;
	padding-left: 12px;
	padding-top: 4px;
	padding-bottom: 4px;
	letter-spacing: 0pt;
	text-align: justify;
}
.p2 {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 0;
	padding-bottom: 0;
	text-indent: 10px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
	margin-right: 10px;
	text-align: left;
	letter-spacing: 0pt;
}
p.checkcentered {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
	letter-spacing: 0pt;
	text-align: center;
	color: red;
	padding-top: 0;
	padding-bottom: 0;
}
img {
	border: none;
	vertical-align: baseline;
	max-width: 100%;
}
.image {
	border: none;
	vertical-align: baseline;
	max-width: 100%;
	-webkit-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);
	-moz-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);box-shadow:6px 6px 25px 0 rgba(135,135,150,1)
}
a img {
	border: none;
}
a:link {
	color: #414958;
	text-decoration: none;
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: underline;
	color: #6F7D94;
	text-align: left;
}
a:active {
	text-decoration: underline;
}
.content {
	z-index: 2;
	width: 95%;
	text-align: justify;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFF;
}
.header {
	background-color: #6F7D94;
	height: 155px;
	padding-top: 10px;
}
.header2 {
	background-color: #6F7D94;
	height: 110px;
	padding-top: 10px;
}
.headerImage {
	background-color: #6F7D94;
	background: url('../images/2Puzzle_Pieces_Fotolia_7940001_M.webp') no-repeat;
	background-position: left right;
	background-size: cover;
	overflow: hidden;
	width: 100%;
}
.content ul, .content ol {
	padding: 0 15px 5px 40px;
	text-align: left;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
	background-color: #6F7D94;
	color: #FFF;
}
.footer {
	padding: 10px 0;
	background-color: #4E5869;
	position: relative;;
	clear: both;;
	text-align: center;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 10pt;
	color: #E5E5E5;
}
.centered {
	text-align: center;
}
#title1 {
	margin-top: 15px;
	padding-right: 4%;
	padding-left: 4%;
	padding-bottom: 10px;
	max-width: 97%;
	color: #FFF;
	float: right;
	position: relative;
	display: inline-block;
	background-color: #6F7D94;
	text-align: right;
	z-index: 1;
}
#title2 {
	position: relative;
	max-width: 750px;
	z-index: 3;
	color: #F0F0F0;
	background-color: #B5BECE;
	clear: none;
	float: left;
	border-radius: 10px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 10px;
	padding-right: 10px;
	padding-left: 10px;
	border-left-width: 1px;
	border-left-style: solid;
	border-top-width: 1px;
	border-top-style: solid;
	border-right-width: 4px;
	border-right-style: outset;
	border-bottom-width: 4px;
	border-bottom-style: outset;
	border-left-color: #999;
	border-top-color: #999;
	border-right-color: #D3D3D3;
	border-bottom-color: #D3D3D3;
	margin-top: 10px;
	margin-left: 4%;
	margin-right: 4%;
	vertical-align: middle;
}
#title3 {
	margin-top: 15px;
	padding-right: 4%;
	padding-left: 4%;
	padding-bottom: 10px;
	max-width: 97%;
	color: #FFF;
	float: right;
	position: relative;
	display: inline-block;
	text-align: right;
	z-index: 1;
}
.container .content table {
	border: 0 solid #666;
	position: relative;
	width: 100%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
#logo1 {
	margin-left: 4%;
	margin-right: 4%;
	z-index: 2;
	position: relative;
	display: inline-block;
	width: auto;
	height: auto;
}
.years2 {
	text-align: right;
	border-color: inherit;
	table-layout: auto;
	width: 75%;
	border-width: 0;
	margin-right: auto;
	margin-left: auto;
}
.centeredbox {
	border-spacing: 0;
	background-color: #B5BECE;
	text-align: center;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	left: auto;
	right: auto;
	float: none;
	padding-top: 13px;
	padding-right: 4px;
	padding-bottom: 13px;
	padding-left: 4px;
	border-top-width: 1px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: outset;
	border-bottom-style: outset;
	border-left-style: solid;
	border-top-color: #999;
	border-right-color: gray;
	border-bottom-color: gray;
	border-left-color: #999;
	-webkit-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);
	-moz-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);box-shadow:6px 6px 25px 0 rgba(135,135,150,1)
}
.centeredboxNew {
	border-spacing: 0;
	border-radius: 5px;
	background-color: #B5BECE;
	text-align: center;
	max-width: 500px;
	float: none;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 13px;
	padding-top: 10px;
	padding-left: 4px;
	padding-right: 4px;
	-webkit-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);
	-moz-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);box-shadow:6px 6px 25px 0 rgba(135,135,150,1)
}
.centeredboxNew2 {
	border-spacing: 0;
	border-radius: 5px;
	background-color: #B5BECE;
	height: 25px;
	text-align: center;
	width: 200px;
	float: none;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 13px;
	padding-top: 10px;
	padding-left: 4px;
	padding-right: 4px;
	-webkit-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);
	-moz-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);box-shadow:6px 6px 25px 0 rgba(135,135,150,1)
}
.centeredbox2 {
	border-spacing: 0;
	background-color: #B5BECE;
	height: 50px;
	text-align: center;
	max-width: 690px;
	margin-left: auto;
	margin-right: auto;
	left: auto;
	right: auto;
	float: none;
	padding-top: 13px;
	padding-right: 4px;
	padding-bottom: 13px;
	padding-left: 4px;
	border-top-width: 1px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: outset;
	border-bottom-style: outset;
	border-left-style: solid;
	border-top-color: #999;
	border-right-color: gray;
	border-bottom-color: gray;
	border-left-color: #999;
	-webkit-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);
	-moz-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);box-shadow:6px 6px 25px 0 rgba(135,135,150,1)
}
.forthemargins {
	padding-left: 20px;
	padding-right: 20px;
}
table, tr, td {
	width: 96%;
	border-width: 0;
}
table th {
	width: 96%;
	height: 22px;
	background-color: #B5BECE;
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
	vertical-align: bottom;
	border: 1px #6F7D94 solid;
	color: rgb(0,0,102);
	text-shadow: 2px 4px 6px rgba(0,0,0,.2),0 -5px 20px rgba(255,255,255,.3);
}
.table3, th, td {
	page-break-before: always;
	border-width: thin;
	border-spacing: 0;
	border-collapse: collapse;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 5px;
	padding-right: 5px;
	border-color: gray;
	text-align: left;
	height: 7px;
	vertical-align: middle;
	width: 96%;
}
table.table3, th, td {
	text-align: left;
	horizontal-align: center;
	height: 7px;
	vertical-align: middle;
	width: 96%;
	border: 1px solid gray;
	border-collapse: collapse;
	border-spacing: 0;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 5px;
	padding-right: 5px;
}
.table4, th, td {
	padding-top: 40px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 50%;
	height: 7px;
	vertical-align: middle;
	border: 1px solid gray;
	border-collapse: collapse;
	border-spacing: 0;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 5px;
	padding-right: 5px;
}
hr {
	color: #0000FF;
	width: 100%;
}
h3.onleft {
	text-align: left;
	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
}
ul.checkbox {
	color: red;
	list-style-image: url("../../images/ChkBox.jpg");
	list-style-position: inside;
	padding-right: 10px;
	padding-left: 15px;
}
p.red {
	color: red;
}
p.centered {
	text-align: center;
	padding: 0;
}
.menucentered {
	font: menu;
	font-size: 11pt;
	text-align: center;
	width: 94%;
	line-height: 200%;
	max-width: 850px;
	margin: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: 8px;
	margin-bottom: 8px;
	border: thin solid #666;
	border-radius: 10px;
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	border-top-width: 1px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: outset;
	border-bottom-style: outset;
	border-left-style: solid;
	border-top-color: #999;
	border-right-color: gray;
	border-bottom-color: gray;
	border-left-color: #999;
}
ul.checkbox {
	color: black;
	list-style-image: url("../../images/ChkBox.jpg");
	padding-right: 5px;
}
.shadow {
	-webkit-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);
	-moz-box-shadow: 6px 6px 25px 0 rgba(135,135,150,1);box-shadow:6px 6px 25px 0 rgba(135,135,150,1)
}
