/*Boring body stuff*/
iframe {
	width: 100%;
	display: block;
}
@font-face {
	font-family: tengann;
	src: url(fonts/tngan.ttf);
}
body {
	background-color: beige;
	background-image: url("images/starrysky.gif");
	font-family: "Helvetica", Arial, sans-serif;
	padding: 0;
	margin: 0;
}
article {
	padding: 5px 0 5px 0;
	border-top:1px solid grey;
	border-bottom: 1px solid grey;
}
h1 {
	font-family: "Impact", Charcoal, sans-serif;
	margin-top: 5px;
	margin-left: 50px;
	font-size: 50px;
	font-variant: small-caps;
	margin-left: 5px;
}
h1.storytitle {
  text-align: center; 
  font-size: 36px;
}
h2 {
	font-size: 30px;
	font-family: "Impact", Charcoal, sans-serif;
}
h3 {
	font-size: 16px;
	font-family: "Arial Black", Helvetica, sans-serif;
	text-decoration: underline;
}
p, ul{
	font-family: "Helvetica", Arial, sans-serif;
	font-size: 14px;
	text-indent: 20px;
}
li {
	font-family: "Helvetica", Arial, sans-serif;
	font-size: 14px;
	text-indent: 0px;
}
section.body {
	margin: 50px auto 5px;
	width: 800px;
	max-width: 60%;
	overflow: auto;
	border-style: groove;
	padding: 5px;
	background-color: #efefc3;
}
section.body article {
	background-color: #f4f4d7;
}
.elvish {
	font-family: tengann;
	color: black;
	font-size: 20px;
	font-variant: normal;
}

.emphasis {
	font-style: italic;
}
.centre {
	text-align: center;
}
.ul {
	text-decoration: underline;
}
a.external {
	background-position: center right;
    background-repeat: no-repeat;
    background-image: url(images/external_link_icon.svg);
    padding-right: 13px;
}
a.external:hover {
	color: red;
}
/*Divs*/
aside.box {
	margin: 5px auto;
	padding: 0cm 0.25cm 0.1cm;
	overflow: auto;
	width: 500px;
	max-width: 80%;
	border: 1px solid back;
	border-radius: 20px;
	border-color: #b32400;
	border-style: double;
}
.box-title {
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-indent: 0;
}
div.hidden {
	display: none;
	background-color: black;
	color: white;
	max-width: 50%;
	padding: 20px;
	margin: 5px 10%;
	border-radius: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
aside.quote {
	margin: 5px auto;
	outline: 0px;
	border: 0px;
	width: 600px;
	max-width: 90%;
	display: none;
}
p.quote {
	font-family: "Hoefler Text", "Baskerville old face", Garamond, "Times New Roman", serif;
	color: grey;
	font-size: 20px;
	font-style: italics;
}
p.attribution {
	font-family: "Hoefler Text", "Baskerville old face", Garamond, "Times New Roman", serif;
	color: grey;
	font-size: 18px;
}
.subtitle {
  text-align: center; 
  font-family: "Hoefler Text", "Baskerville old face", Garamond, "Times New Roman", serif;
}
aside.photo {
	margin: 5px auto;
	width: 200px;
	background-color: floralwhite;
	border: 2px solid darkgray;
	padding: 0px;
	box-shadow: 4px 4px 12px #ccc;
}
img.photo {
	width: 190px;
	margin: 5px;
	border: 1px darkgray solid;
}
p.caption {
	font-size: 9px;
	font-style: small-caps;
	text-align: center;
	text-indent: 0px;
	margin: 0px 10px 5px;
}
/*Tables*/
table {
	border-collapse: collapse;
	border: 1px solid black;
	margin: auto;
}
th, tr, td {
	border: 1px solid black;
	padding: 5px 10px;
	font-size: 14px;
	text-align: center;
}
td.narrow {
	padding: 5px 10px;
	text-indent: 0px;
}
th.narrow {
	padding: 5px 10px;
	text-indent: 0px;
	font-weight: bold;
}
table.key td {
	padding: 0px;
	margin: 0px;
}
/*sidebar styles*/
ul.sidebar {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 18%;
	position: fixed;
	overflow: auto;
	background: #f1f1f1;
	height: 100%;
}
li.sidebar {
	display: block;
	padding: 8px 0 8px 16px;
	text-decoration: none;
}
/*pictures*/
img.icon {
	float: right;
	position: fixed;
	margin-top: 20px;
	margin-left: 82%;
	z-index: -2;
}
img.image {
	float: right;
	margin: 0 0 10px 10px;
}
/*nav dropdown styles*/
nav.header-bar {
	margin-top: 0px;
	background-color: #dddddd;
	outline-style: solid;
	outline-color: black;
	width: 100%;
	box-shadow: 0px 8px 16px 0px;
}	
.dropbtn {
	cursor: pointer;
	padding: 16px;
	width: 100px;
	font-size: 16px;
	border: none;
	background-color: #dddddd;
}
.dropbtn-active {
	cursor: pointer;
	padding: 16px;
	width: 100px;
	font-size: 16px;
	border: none;
	background-color: #bbbbbb;
}
.dropdown {
	position: relative;
	display: inline-block;
	font-size: 12px;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 100px;
	box-shadow: 0px 8px 16px 0px;
	z-index: 1;
	transition: 2s;
}
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	display: block;
}
.dropdown:hover .dropdown-content {
	display: block
}
.dropdown:hover .dropbtn {
	background-color: #bbbbbb;
}
a.dropdown:hover {
	background-color: #bbbbbb;
}