<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =============================================================================
   Accessibility - High Contrast
   ========================================================================== */

/*
	Adjusted from http://antijingoist.github.com/web-accessibility/
	Primarily fixing the @font-face declarations
*/

@font-face {
	font-family: 'opendyslexic';
	src: url('./fonts/opendyslexic-bold-webfont.eot');
	src: url('./fonts/opendyslexic-bold-webfont.eot?#iefix') format('embedded-opentype'),
		 url('./fonts/opendyslexic-bold-webfont.woff') format('woff'),
		 url('./fonts/opendyslexic-bold-webfont.ttf') format('truetype'),
		 url('./fonts/opendyslexic-bold-webfont.svg#opendyslexicbold') format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'opendyslexic';
	src: url('./fonts/opendyslexic-bolditalic-webfont.eot');
	src: url('./fonts/opendyslexic-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
		 url('./fonts/opendyslexic-bolditalic-webfont.woff') format('woff'),
		 url('./fonts/opendyslexic-bolditalic-webfont.ttf') format('truetype'),
		 url('./fonts/opendyslexic-bolditalic-webfont.svg#opendyslexicbold_italic') format('svg');
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: 'opendyslexic';
	src: url('./fonts/opendyslexic-italic-webfont.eot');
	src: url('./fonts/opendyslexic-italic-webfont.eot?#iefix') format('embedded-opentype'),
		 url('./fonts/opendyslexic-italic-webfont.woff') format('woff'),
		 url('./fonts/opendyslexic-italic-webfont.ttf') format('truetype'),
		 url('./fonts/opendyslexic-italic-webfont.svg#opendyslexicitalic') format('svg');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'opendyslexic';
	src: url('./fonts/opendyslexic-regular-webfont.eot');
	src: url('./fonts/opendyslexic-regular-webfont.eot?#iefix') format('embedded-opentype'),
		 url('./fonts/opendyslexic-regular-webfont.woff') format('woff'),
		 url('./fonts/opendyslexic-regular-webfont.ttf') format('truetype'),
		 url('./fonts/opendyslexic-regular-webfont.svg#opendyslexicregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

*:not(.fa):not(.fas):not(.fab):not(.far):not(.fal):not([class*="fa-"]):not([class*="icon-"]) {
	font-family: "opendyslexic" !important;
}


/* Use an off-white background. Some users need high
   contrast for better reading. Some need low contrast. 
   A happy medium would be off white to reduce "glare"
   and black text. Anyone that needs a greater extreme
   likely overrides stylesheets.                       
   The text is colored dark blue to assist with "glare"
   issues, but also to make the black symbols subtly stand
   out.                                                  */
body
{
	font-size: 14px;
	line-height: 200%;
	/* background: snow; */
	margin: auto 0;
	padding: 0 100;
	color: #1A0033; 
}

/* the highlight class is being used in conjuction 
   with a script that results in symbols being colored 
   differently. This helps comprehension by making them
   subtly more visable.                                 */
h1, h2, h3, h4, .highlight
{
	font-style: bold;
	color: black;
}

.highlight
{
	font-size: 125%;
}

/* alternate paragraph shading helps users stay
   on track while reading. This shading is very 
   subtle so it is not annoying, but it still 
   helps.                                       */
/*
p:nth-child(even), li:nth-child(even)
{
	background-color: rgba(0,0,0, 0.03);
}
*/

/* highlight text under cursor helps users focus
   on what they are currently reading. This shading
   is darker than the alt-paragraph shading.        */
/*
p:hover, li:hover
{
	background-color: rgba(0,0,0, 0.5) !important;
}
*/</pre></body></html>