:root {
	--c-highlight: #767888;
	--c-background: #d6d4d8;
	--c-links: #42413C;
}
body {
	font-family: arial narrow, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	background-color: #421E60;
	margin: 0;
	padding:0;
	color: #000;
}
* {
	box-sizing: border-box;
}
.section-break {
	margin-bottom: 1rem;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding: 0;
	text-align: left;
}

	
h1 { font-size: 30px; line-height: 1.1; font-weight:900; color:#401c5e;}
h2 { font-size: 24px; line-height: 1.0; font-weight:900; margin: 0 0 .4em; color:#401c5e;}
h3 { font-size: 20px; line-height: 1.0; font-weight:bold; margin: 0 0 .4em;  }
h4 { font-size: 16px; line-height: 1.0; font-weight:bold; margin: 0 0 .4em;  }

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color: #6E6C64;
	text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	max-width: 1248px;
	width: 100vw;
	background-color: #f7f2fc;
	min-height: calc(100vh - 30px);
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {
	max-width: 1248px;
	width: 100vw;
	background-color: #d6d4d8;
}
.header > img {
	max-width: 1248px;
	width: 100vw;
	min-height: 100px;
	object-fit: cover;
	object-position: left;
}
.facebook-badge{
	font-size: 0.6em;
	font-weight: bold;
	text-align: center;
}
/* Menu */
.menu-wrapper {
	width: 100vw;
	background-color: var(--c-background);
	color: var(--c-links);
	padding-bottom: 10px;
	/* border-right: 5px solid var(--c-background);  */
}
.menu-wrapper ul {
  	list-style: none; 
  	margin: 0; 
  	padding: 0;
  	border: 0;
}
.menu-wrapper li {
	padding: 0;
	min-height: 1px;
	line-height: 1em;
	vertical-align: middle;
	color:white;
	position: relative;
	border-bottom: solid #0001 1px;
}
.menu-wrapper a:active, .menu-wrapper a:visited {
	color: var(--c-links);
}
.menu-wrapper li:hover {
	background: var(--c-highlight);
	color: white !important; 
}
.menu-wrapper li:hover a {
	color: white !important; 
}
.menu-wrapper a {
	text-decoration: none !important;
	display: block;
	padding: 7px 15px;
}
.sub-menu li {
	background: var(--c-highlight);
	color: white !important; 
}
.sub-menu {
	display: none;
}
.sub-menu li:hover {
	background: var(--c-background);
	color: white !important; 
}
.sub-menu li:hover > a {
	color: var(--c-highlight) !important; 
}

h1 h2 h3 {
margin: 0;

}
.body-text {
	height: 100%;
}
.content {
	padding: 15px 10px;
	width: 100%;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer styles ~~ */
footer,
.footer {
	text-align: center;
	align-items: center;
	padding: 1px 1px 5px 1px;
	min-height:30px;
	height: 30px;
	background-color: #d6d4d8;
	font-size:9pt;
	text-decoration: none;
}


img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.small-margin-left {
  margin-left: 10px !important
}
  
.flex-row {
  display: flex;
  flex-direction: column;
}
.menu-button {
	display: block;
	text-align: center;
	padding-top: 10px;
}
.menu-button > button {
	background: transparent;
	border: solid 1px #767888;
	border-radius: 5px;
	font-size: 2em;
}
.menu-button > button:hover {
	background: #767888;
}
.menu-list {
	display: none;
	text-align: center;
}
.flex-column {
	display: flex;
	flex-direction: column;
}
.modified {
	font-style: italic;
	font-size: 9pt;
}
.text-center {
		text-align:center
}

@media only screen and (min-width: 640px) {
	.flex-row {
		flex-direction: row;
	}
	.menu-button {
		display: none !important;
	}
	.menu-list {
		display: block !important;
		text-align: left;
	}
	.menu-wrapper {
		max-width: 160px;
	}
	.sub-menu {
		position: absolute;
		left: 99%;
		top: 0;
	}
	li:hover > .sub-menu {
		display: block !important;
	}
}
