* {
	padding: 0;
	border: 0;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

html {
	background-color: white;
}

body {
	margin: 0 auto;
	margin-top: 0;
	margin-bottom: 0;
	min-height: 100vh;
	font-family: Verdana, sans-serif;
}

a {
	color: #663399;
	text-decoration: none;
}

a:hover {
	font-weight:bold;
}

hr {
	background: #663399;
	margin-top: 0;
	margin-bottom: 0;
	height: 0.75px;
	border: 0;
}

	hr.divider {
		background: #664200;
		max-width: 940px;
		text-align: center;
	}

p {
	padding-left: 14px;
	padding-right: 14px;
	max-width: 968px;
	font-size: 14px;
	color: #664200;
	line-height: 1.25;
	text-align: justify;
}

	p.center{
		text-align: center;
	}
	
	p.heading {
		font-size: 18px;
		text-align: left;
	}

	p.purple {
		color: #663399;
	}

	p.bottom {
		color: #663399;
		text-align: center;
		margin-top: 0px;
		margin-bottom: 6px;
	}
	
	p.alice {
		font-size: 48px;
		font-family: AliceInWonderland, sans-serif;
		letter-spacing: 1px;
		margin-top: 0px;
		margin-bottom: 0px;
		text-shadow: 1px 1px 2px gray;
		
	}

img {
	display: block;
	width: 100%;
	max-width: 640px;
	height: auto;
	margin: 0 auto;
}

img.wrap {
	float: left;
	width: 25%;
	margin-left: 15px; 
	margin-right: 15px; 
    margin-bottom: 10px;
}

table {
    width: 97%;
    border-collapse: collapse;
	table-layout: fixed;
}

th, td {
    font-size: 14px;
	border: 1px solid #663399;
    text-align: left; 
    padding: 8px;
	color: #663399;
}

td {
	color: #664200;
}

td.red {
	color: #a52a2a;
}

.col1 { width: 10%; }
.col2 { width: 17%; }
.col3 { width: 31%; }
.col4 { width: 12%; }
.col5 { width: 14%; }
.col6 { width: 16%; }

.container {
	background: linear-gradient(180deg, #402060 0%, #6d3c57 33%, #a45439 55%, #c9791e 75%, goldenrod 90%, gold 100%);
	width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	margin-top: 0;
	margin-bottom: 0;
	overflow-y: auto;
}

.main {
	background-color: white;
	width: 100%;
	height: 100%;
	max-width: 1024px;
	margin: 0 auto;
	margin-top: 0;
	margin-bottom: 0;
}

.navbar {
	background-color: white;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	max-width: 1024px;
	text-align: center;
}

.nav-button {
	background: white;
	width: 100px;
	height: 28px;
	margin: 8px;
	color: #663399;
	border: 1px solid #663399;
	text-shadow: 1px 1px 2px grey;
	font-family: Verdana, sans-serif;
}

	.nav-button:hover {
		background: #bf9fdf;
		border-style: outset;
		color: white;
		cursor: pointer;
		text-shadow: 1px 1px 2px #663399;
	}

	.nav-button:active {
		background: #663399;
		border-style: inset;
		color: #bf9fdf;
		cursor: pointer;
		text-shadow: 1px 1px 2px grey;
	}

.legal {
	background-color: white;
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	height: 32px;
	width: 100%;
	max-width: 1024px;
	text-align: center;
}

.legal p {
	padding: 4px;
}

.row {
	max-width: 968px;
}

	.row:after {
		content: "";
		display: table;
		clear: both;
	}

#page-content {
	width: 100%;
	height: 100%;
	text-align: center;
	opacity: 1;
    transition: opacity ease-in-out;
}

@font-face {
	font-family: Verdana;
	src: url("../fonts/verdana.ttf");
}

@font-face {
	font-family: AliceInWonderland;
	src: url("../fonts/alice.ttf");
}

@media screen and (max-width: 600px) {
	p {
		font-size: 13px;
	}
	
	span {
		font-size: 14px;
	}

	th, td {
		font-size: 11px;
	}

	.legal p {
		font-size: 11px;
	}
	
	
}

@media screen and (max-width: 400px) {
	p {
		font-size: 12px;
	}
	
	span {
		font-size: 13px;
	}

	th, td {
		font-size: 9px;
	}

	.legal p {
		font-size: 10px;
	}
	
	
}

::-webkit-scrollbar {
	width: 6px; 
}

::-webkit-scrollbar-track {
	background: #663399;
}

::-webkit-scrollbar-thumb {
	background: #9966cc;
}

::-webkit-scrollbar-thumb:hover {
	background: #bf9fdf;
}