/* Fonts */
@font-face {
    font-family: MajestiBanner;
    src: url("media/majesti-banner-heavy.otf") format("opentype");
}

/* Header and Footer Content */
div.wrapper {
	display: block;
    padding: 0px;
    border-bottom: 1px solid black;
	border-top: 1px solid black;
	width: 100%;
}
div.header {
	background-color: #41393d;
}
.white {
	background-color:#FFFFFF;
}.dark {
	background-color: #333333;
}
.mint {
	background-color: #d7e4c2;
}
.light {
	background-color: #e7f4d2;
}
header, main, footer {
	min-width: 900px;
	max-width: 1000px;
}
header {
	padding: 10px;
}
nav { overflow:hidden; }
#topnav {
    position: -webkit-sticky; /* Safari support */
    position: sticky;
    top: 0;
}
.currentlocation { background-color: #41393d; }
.right { float: right; }
.emphasis { color: #ef4e22; }

/* Body Content */
section {
    background-color: #d7e4c2;
}
article {
    /* border: 2px solid grey;
    border-radius: 5px; */
    display: block;
    vertical-align: middle;
    margin: 10px;
    background-color: #e7f4d2;
    padding: 20px;
}
article::after {
    content: "";
    clear: both;
    display: table;
}
section {
    display: block;
    padding: 20px;
}
h1 {
    font-size:36px;
    font-family:MajestiBanner;
    text-transform: uppercase;
}
div.container {
    width: 49%;
    float: left;
}
img {
    display: block;
}
.center {
    margin-left: auto;
    margin-right: auto;
}
.centertext {
    text-align: center;
}

/* Lists */
li {
    float: left;
    display: inline-block;
    padding: 10px;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
}
nav li {
    display: inline-block;
    float: left;
    vertical-align: bottom;
    padding: 0px;
}
nav li a {
    display: inline-block;
    color: white;
    text-align: center;
    text-decoration: none;
    padding:16px;
}
nav li a:hover {
    background-color: #111111;
}
