html {
  box-sizing: border-box; 
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
	background-color: #000;
	box-sizing: border-box;
	width: auto;
	height: auto;
	font-family: Georgia, times, serif;
}

#container {
	position: relative;
	width: 95%;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 5px auto 10px auto;
	text-align: left;
	color: #C0C0C0;
	background-color: #000;
	/* overflow: auto; */
}
header {
	text-align: center;
	margin:0px;
	height: 125px;
	background-color: #000;
}

nav {
	clear: both;
	background-color: #000;
	font-family: "Comic Sans MS", cursive, sans-serif;
	color: #ffffff;
	height: 30px;
	border-style: solid none solid none;
	border-color: #1a1a1a;
	border-width: 2px 1.5em;
}
nav ul {
	list-style: none;
	margin: 0px;
 }
nav li {
	display: inline;
    margin-right: 40px;
	float: left;
}
nav li a {
    color: #ffffff;
}
nav li a:hover, nav li a.current {
    color: #0000FF;
}
nav li a:link, nav li a:visited, nav li a:active, nav li a:focus {
	text-decoration: none;
	padding: 0 15px 0 20px;
	margin-right: 10px;
	line-height: 25px;
	border: none;
}
		
aside{
	float: right;
	z-index: 1;
	/* background-color: #0d0d0d; */
	background-color: rgba(13, 13, 13, 1);
	font-size: .9em;
	width: 250px;
	height: 400px;
	padding: 10px;
	margin: 2px;
	border: 2px solid #1a1a1a;
	border-radius: 10px;
	/* -webkit-border-radius: 10px; */
}
aside ol li a {
    color: #0000FF;
}
aside ol li a:link, aside ol li a:visited, aside ol li a:active, aside ol li a:focus {
	text-decoration: none;
} 
aside ol li a:hover {
    color: #891C9F;
}

section{
	position: relative;
    width: 75%;
	height: 100%;
	padding: 10px;
}
section p a:link, section p a:visited, section p a:active, section p a:focus {
	text-decoration: none;
	color: #C0C0C0;
	font-style: italic;
}
section p a:hover {
	color: #891C9F;
}
footer{
	clear: both;
	position: absolute;
    left: 15px;
    bottom: 0;
	height: 4em;
	width: 95%;
	background: transparent;
	margin: 0 auto;
	padding: 2px;
	color: #C0C0C0;
	font-family:"Courier New", Courier, monospace; 
	font-size: 80%;
	border-style: solid none none none;
	border-color: #1a1a1a;
	border-width: 2px 1.5em;
}

#footertxt {
	text-align: center;
}
footer p a {
    color: #0000FF;
}
footer p a:link, footer p a:visited, footer p a:active, footer p a:focus {
	text-decoration: none;
}
footer p a:hover {
    color: #891C9F;
}

h1 {
	font-size: 25px;
}

img.floatLeft {
	float: left;
	padding: 0px;
	margin-right: 10px;
	border: 1px solid#0d0d0d;
}
img#logo {
	float: left;
	width: 30%;
	height: auto;
    margin-left: 0;
    margin-right: 0;
}
img#muds {
	width: 15%;
	height: auto;
}

table {
	width: 90%;
	border-collapse: separate;
    border-spacing: 0 1px; /* this is the ultimate fix */
}
table tbody tr {
	padding: 0;
}
table tbody tr td a {
    color: #0000FF;
}
table tbody tr td a:link, table tbody tr td a:visited, table tbody tr td a:active, table tbody tr td a:focus {
	text-decoration: none;
}
table tbody tr td a:hover {
    color: #891C9F;
}
.clear { 
	clear: both;
}
