body {
	font-family: georgia, serif;
	line-height: 1.48;
	margin: 0;
}

.header {
	padding: 1em;
	text-align: center;
	background: white;
	border-top: 5px solid #000;
	border-bottom: 1px solid #333;
	box-shadow: 0 4px 4px rgba(0,0,0,.3);
}

.header h1 {
	margin-bottom: .25em;
	font-size: 48px;
	line-height: 1.2;
	font-style: italic;
}

/* NAVIGATION */
.navigation {
	margin: 0;
	padding: 0;
}
.navigation li {
	display: inline-block;
}
.navigation a {
	display: inline-block;
	padding: 10px;
	color: 	tomato;
	text-decoration: none;
	text-transform: uppercase;
	font-family: "arial narrow", arial, sans-serif;
	font-weight: bold;
}
.navigation .current {
	color: #aaa;
}

.navigation a:hover {
	color: #333;
	background-color: white;
}

.main-content {
	max-width: 960px;
	margin: 0 auto;
        padding: 0 0 100px;
        text-align: center;
}

/* table */
.table  {
	margin: 1.5em 0;
	border-spacing: 0;
	border-collapse: collapse;
	border: solid 1px #aaa;
	box-shadow: 2px 2px 5px rgba(0,0,0,.25)
}
.table td {
	padding: 1em;
	border-top: solid 2px #ccc;
}
.table tr:nth-child(even) {
	background-color: #ddd;
}
.two-columns:after {
    content: " ";
    display: inline-block;
    clear: both;
}
.two-columns > .column {
    float:left;
    color: red;
    width:50%;
    padding: 0 5px;
    box-sizing: border-box;
    text-align: center;
}

/* FOOTER */
.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	background: white;
	padding: 2em 0 1em;
	border-top: solid 1px #aaa;
}