html {
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
}
/* {
	outline: 1px solid red;
}*/
body, main, nav, footer, #wrapper {
	display: flex;
}
body, nav, #wrapper {
	flex-direction: column;
	flex-wrap: wrap;
}
main {
	padding: 2%;
	width: 80%;
}
nav {
	width: 20%;
	flex-wrap: wrap;
}
nav a, footer a {
	padding: 5px 20px;
	margin-top: 20px;
	font-size: 1.2em;
	text-decoration: none;
	color: #000;
}
nav .current {
	color: #13a21f;
	border: 1px solid #13a21f;
}
h1 {
	font-family: Helvetica, sans-serif;
	text-align: center;
	color: #03f;
	font-size: 2em;
	text-decoration: bold;
}
article {
	margin-left: 2%;
	padding-left: 2%;
	border-left: 1px solid #999;
}
article h1 {
	font-size: 1.5em;
	text-align: left;
}
article h2 {
	font-size: 1.2em;
}
article p, li {
	font-family: Georgia, Palantino, serif;
	font-size: 1.2em;
	line-height: 1.5;
}
article a {
	color: #0049ff;
	text-decoration: none;
}
footer {
	justify-content: space-around;
	width: 90%;
}
figure {
	display: flex;
	flex-direction: column;
	flex-align: center;
	justify-content: center;
}
figcaption {
	text-align: center;
	font-size: 1.2em;
}
#titleBar {
	width: 100%;
}
#tagline {
	font-style: italic;
	font-size: 1.5em;
	color: #444;
	text-align: center;	
}
#author {
	font-family: Helvetica, sans-serif;
	font-size: 1.5em;
	color: #03f;
	text-decoration: bold;
	text-align: center;
}
#wrapper {
	padding: 0 2% 40px;
}
#altnav {
	display: none;
}
#next {
	font-family: Helvetica, sans-serif;
	color: white;
	font-size: 1.5em;
	padding: .25em;
	background-color: #03f;
	float: right;
}
#prior {
	font-family: Helvetica, sans-serif;
	color: white;
	font-size: 1.5em;
	padding: .25em;
	background-color: #03f;
	float: left;
}
.shadowed {
	box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.fullwidth {
	width: 100%;
}
.oneimage {
	display: flex;
	justify-content: center;
}
.twoimages {
	display: flex;
	justify-content: space-between;
}
.smallimg {
	width: 40%;
	height: 40%;
}
.medimg {
	width: 60%;
	height: 60%;
}
.largeimg {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 960px) {
	html {
		font-size: 8pt;
	}
	main {
		flex-direction: column;
		align-self: center;
	}
	nav {
		/*width: 100%;*/
		display: none;
	}
	article {
		border-left: none;
	}
	figcaption {
		font-size: 1em;
	}
	.smallimg, .medimg {
		width: 80%;
		height: 80%;
	}
	.twoimages {
		flex-direction: column;
		flex-align: center;
	}
	#altnav {
		display: block;
		margin-bottom: 20px;
	}
	#altnav a {
		padding: 5px 20px;
		margin: 20px 0;
		font-size: 1.2em;
		text-decoration: none;
		color: #000;
	}
}