/* reset browser styles */
* {
	box-sizing: border-box;
}


html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.2;
}

ol {
	padding-left: 1.4em;
	list-style: decimal;
}

ul {
	padding-left: 1.4em;
	list-style: square;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* end reset browser styles */

hr {
	clear:both;
}

footer {
	display: none;
}

@media (max-width: 520px){
	footer{
		display: flex;
		justify-content: space-between;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 7.5vh;
		background-color: #e0e0e0;
		z-index: 1000;
		border-top: 1px solid black;
	}
	.footButt {
		margin-left: 2vw;
		padding:2vh 10vw 2vh 10vw;
		border-left: 1px solid black;
		border-right: 1px solid black;
		border-bottom: 1px solid black;
		text-decoration: none;
		text-align: center;
		margin: 0;
		font-size: calc(8px + 2vh);
		color: black;
		background-color: white;
		box-shadow: gray;
		font-family: berkleyMono;
	}
	.footButt:hover {
		margin-left: 2vw;
		padding:2vh 10vw 2vh 10vw;
		border: 1px solid black;
		text-decoration: none;
		text-align: center;
		margin: 0;
		font-size: calc(8px + 2vh);
		color: white;
		background-color: black;
	}

	#topLeftNav{
		display: none;
	}
	#topRightNav{
		display: none;
	}
}

@font-face {
	font-family: berkleyMono;
	src: url(BerkeleyMono-Regular.woff2);
}

@font-face {
	font-family: sourceSerif;
	src: url(SourceSerif4-Regular.ttf.woff2);
}


.headerNav{
	margin: 0;
	padding: 0;
	list-style: none;
}

.headerNav li {
	display: inline;
}

.headerNav a {
	display: inline-block;
	text-decoration: none;
	padding: 2px 15px 2px 15px;
	border: solid 1px black;
	box-shadow: 3px 3px grey;
	color: black;
	background-color: white;
}

.headerNav a:hover {
    display: inline-block;
    text-decoration: none;
    padding: 2px 15px 2px 15px;
    border: solid 1px black;
    box-shadow: 3px 3px grey;
    color: white;
    background-color: black;
}

.pageHeader {
	text-align: center;
	font-family: berkleyMono;
	padding: 0px 0px 10px 0px;
}
.pageHeader h1 {font-size:24px  }
.pageHeader h2 {font-size:12px  }

.pageTitle {
	padding: 10px 10px 10px 10px;
}

.columns {
	width: auto;
	max-width: 1200px;
	padding-bottom: 7.5vh;
	min-height: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.sideBar {
	display: block;
	float: left;
	width: 15%;
	padding: 5px 10px 5px 10px;
	border: solid 1px black;
	background: #a8a8a8a8;
	font-family: berkleyMono;
}

.sideBar h1{
	font-size: calc(8px + 1.1vw);
	text-align: center;
}

.rightBar {
	display: block;
	float: right;
	width: 15%;
	padding: 5px 10px 5px 10px;
	border: solid 1px black;
	background: #a8a8a8a8;
	font-family: berkleyMono;
}

body {
	background-color: #EAEAEA;
}
.wordPortalBG {
	background-color: #454537bd;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%
}

.sideBarNav {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-wrap: break-word;
	hyphens: auto;
}

.sideBarNav li {
	display: inline;
}
.sideBarNav a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    font-size: calc(4px + 0.75vw);
    padding: 2px 10px 2px 10px;
    border: solid 1px black;
    color: black;
    background-color: white;
    box-shadow: 3px 3px grey;
}

.sideBarNav a:hover {
    display: flex;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    font-size: calc(5px + 1vw);
    padding: 2px 10px 2px 10px;
    border: solid 1px black;
    color: white;
    background-color: black;
    box-shadow: 3px 3px grey;
}

 #selected{
background: repeating-linear-gradient(
    45deg,
    #26ba3a,
    #26ba3a 10px,
    #1e942e 10px,
    #1e942e 20px
    );
}
#selected:hover{
background: repeating-linear-gradient(
    45deg,
    #1e942e,
    #1e942e 10px,
    #26ba3a 10px,
    #26ba3a 20px
        );
color:black;
}