body {
    margin: 0;
	font-family: arial;
	background-color: rgb(50,50,50);
	color: rgb(250,250,250);
}

.nav {
    width: 100%;
	display: inline-block;
    margin: 0;
	position: fixed;
	z-index: 1;
}
.nav a {
	text-decoration: none;
	color: rgba(200,200,200,0.8);
	transition: 0.3s;
}
.nav a:hover, .nav a:active {
	color: rgba(250,100,250,1);
}
.nav table {
	width: 100%;
	height: 70px;
}
.nav td {
	text-align: center;
	background-color: black;
	width: 16%;
	border-right: 1px solid rgba(50,50,50,0.8);
	box-shadow: 0px 3px 3px black;
	letter-spacing: 2px;
	transition: 0.3s;
	padding: 0 10px;
	cursor: pointer;
}
.nav td:hover, .nav td:active {
	transform: scale(1.1, 1.1);
	background-color: rgb(110,110,110);
}
.nav td:hover a {
	color: rgba(250,250,250,1);
}

#content {
	padding-top: 80px;
	padding-bottom: 100px;
	margin: 0px 5% 20px 5%;
	width: 90%;
}

.extProfile a {
	color: yellow;
}
.figure a {
	color: rgb(255,240,200);
}

.figure {
	padding: 0px 10px;
	margin: 6px 10px;
	background-color: rgb(45,45,45);
	border: 1px solid rgb(150,150,150);
	color: rgb(250,250,250);
	border-radius: 5px;
	line-height: 200%;
	display: inline-block;
}
.figure a {
	text-decoration: none;
}
.figure a:hover {
	text-decoration: underline;
}

#figures {
	margin-top: 15px;
}
#figuresAggregate {
	padding: 5px 10px;
	background-color: rgb(20,20,20);
	border: 1px solid rgb(80,80,80);
	border-left: 5px solid rgb(80,80,80);
	color: rgb(250,250,250);
	border-radius: 8px;
	float: right;
	margin: 0px 10px 10px 0px;
}
#updated {
	float: right;
	line-height: 200%;
	color: rgb(200,200,200);
}
.extProfile {
	background-color: rgb(20,20,20);
	border: 1px solid rgb(80,80,80);
	border-left: 5px solid rgb(80,80,80);
	padding: 5px 10px;
	color: rgb(250,250,250);
	border-radius: 8px;
	margin-right: 10px;
	float: left;
}
#title {
	margin-bottom: 15px;
}
.headerRow {
	background-color: rgb(80,80,80);
	color: rgb(250,250,250);
}
#content .headerRow td {
	padding: 10px 25px;
	border-top: 1px solid rgb(100,100,100);
	font-size: 1.1em;
}
table {
	width: 100%;
	border-collapse: collapse;
}
table tr {
	background-color: rgb(55,55,55);
}
table tr:nth-child(2n) {
	background-color: rgb(60,60,60);
}
#content td {
	border: 1px solid rgb(120,120,120);
	border-top: 3px solid rgb(120,120,120);
	padding: 15px 25px;
}
#content .category {
	font-size: 1.1em;
	border-left: 5px solid rgb(120,120,120);
	border-right: 3px solid rgb(120,120,120);
}