body{
	font-family: Verdana, sans-serif;
	width: 100%;
	margin: 0px;
	position: absolute;
	top: 0;
}
#container {
    margin: 0 auto;
	margin-top: 20px;
	padding: 0px 10%;
}
#top-header{
	width: 100%;
	background-color: #333132;
}
#header {
    padding: 25px 10px 15px 10px;
    font-family: Times, Times New Roman, serif;
	font-size: 44px;
    line-height: 50px;
	color: white;
	text-align: center;
}
.byline {
    margin: 20px 0px;
    font-size: 13px;
    font-weight: bold;
}
.byline a {
    text-transform: uppercase;
}
#intro{
	margin: 30px 0 50px 0;
}

#table-stuff{
	display: flex;
	flex-direction: row;
}

#mainbar{
	flex: 0 1 auto;
}
#sidebar{
	flex: 0 1 auto;
	padding: 10px;
	padding-bottom: 40px;
	height: 100%;
}
#more-stuff{
	border: solid black 1px;
	height: 100%;
	padding: 10px;
}
.more-button{
	
}
table {
    border-collapse:collapse;
    margin: 0 0 20px 0;
    border-width: 0;
    width: 100%;
    font-size: 14px;
}
th {
    text-align:left;
}
tr, td, th {
    border-color: #f2f2f2;
}
tr:hover {
    background-color: #f3f3f3;
}
p {
    line-height:140%;
}
a {
    color: red;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
	color: maroon;
}

footer{
	margin-top: 20px;
	padding: 10px;
	background-color: maroon;
}
#footer-text{
	margin: 0 auto;
	text-align: center;
	color: white;
}

@media (max-width: 979px) {
    tr th:nth-of-type(n),
    tr td:nth-of-type(n) {
        display:none;
    }
	tr th:nth-of-type(n+5),
	tr td:nth-of-type(n+5) {
        display:table-cell;
    }
	tr th:nth-of-type(2n),
	tr td:nth-of-type(2n) {
        display:table-cell;
    }
	#table-stuff{
		flex-direction: column;
	}
	#mainbar{
		order: 99;
	}
	#container{
		padding: 5px;
	}
}

@media (max-width: 420px) {
    tr th:nth-of-type(n),
    tr td:nth-of-type(n) {
        display:none;
    }
	tr th:nth-of-type(2n),
	tr td:nth-of-type(2n) {
        display:table-cell;
    }
	tr th:nth-of-type(n+7),
	tr td:nth-of-type(n+7) {
        display:table-cell;
    }
	#table-stuff{
		flex-direction: column;
	}
	#mainbar{
		order: 99;
	}
	#container{
		padding: 5px;
	}
}