body {
    margin: 0;
	font-family: arial;
	background-color: rgb(50,50,50);
	color: rgb(250,250,250);
}

#content {
	padding-top: 80px;
	margin: 0px 5% 0px 5%;
	width: 90%;
}

.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);
}

#description {
	background-color: rgb(20,20,20);
	padding: 5px;
	border-radius: 15px;
	border: 1px solid rgb(60,60,60);
	margin-bottom: 10px;
}
#description li {
	margin: 5px 0px;
	border-bottom: 2px solid rgb(100,100,100);
}
#descriptionNotes {
	margin: 5px 5px 5px 15px;
}
#descriptionL, #descriptionR {
	font-size: 0.8em;
	width: 46%;
	margin: 5px 1% 5px 1%;
	line-height: 150%;
}
#descriptionR {
	float: right;
}

#dataSource {
	padding: 5px 10px;
	background-color: rgb(20,20,20);
	color: rgb(250,250,250);
	border-radius: 5px;
	border: 1px solid rgb(80,80,80);
}
#dataSource a {
	color: yellow;
}

#swimmingElem {
	width: 90%;
	display: inline-block;
	padding: 20px 5% 30px 5%;
	border: 1px solid rgb(60,60,60);
	border-radius: 15px;
	background-color: rgb(45,45,45);
	margin-bottom: 50px;
}
#swimming {
	width: 100%;
	border-collapse: separate; 
	border-spacing: 0px;
}
#sgraph {
	margin-top: 5px;
	background-color: rgb(200,200,200);
}
.record {
	color: springgreen;
}
.runningRecord {
	background-color: rgba(50,50,50);
	margin: 0px 5px;
	border-radius: 5px;
	padding: 3px 5px;
}

#swimmingAggregate {
	padding: 10px;
	background-color: rgb(20,20,20);
	color: rgb(250,250,250);
	border-radius: 8px;
}
.headerRow, .nDist {
	background-color: rgb(80,80,80);
	color: rgb(250,250,250);
}
.headerRow {
	position: sticky;
	top: 70px;
}
table {
	width: 100%;
	border-collapse: collapse; 
}
table tr:nth-child(2n) {
	background-color: rgb(60,60,60);
}
td {
	border: 1px solid rgb(20,20,20);
	padding: 5px 15px;
}

.graph {
	height: 200px;
	width: 100%;
	border-radius: 0px;
	border: 1px solid rgb(20,20,20);
}
.graph_title {
	line-height: 200%;
}
.graph_title_style {
	padding: 5px 10px;
	background-color: rgb(20,20,20);
	border: 1px solid rgb(80,80,80);
	border-radius: 5px;
	margin: 0px 5px 0px 0px;
	font-size: 1.1em;
}

.opa {
	color: rgb(100,100,100);
}
.yellow {
	color: yellow;
}