html {
	background-color: #f9f9f9;
	font-family: 'Verdana';
	color: #00478a;
	line-height: 1.5em;
}

body {
	padding: 0px 10px;
}

header {
	padding: 0px 20px;
	border: solid #bababa;
	box-shadow: 0px 12px 40px 0px rgba(45, 75, 162, 0.15);
	border-radius: 20px;
}

a {
	text-decoration: none;
}

a:hover {
	color: red;
}

.codeBlock {
	font-size: 1.2em;
    background: #474747;
    color: white;
    padding: 5px;
	margin: 5px auto;
	white-space: pre;
	line-height: 1em;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table th, td {
  text-align: left;
  padding: 8px;
}

table tr:nth-child(even){background-color: #f2f2f2}

table th {
  background-color: #0047a7;
  color: white;
}

section {
	padding: 0px 20px;
	border-bottom: solid 2px;
}

.sectionListContainer {
	margin: 10px;
}

.sectionListButton {
	color: white;
	border: none;
    width: 100%;
	background-color: #bababa;
	cursor: pointer;
	padding: 8px .8em;
	text-align: center;
	display: block;
	margin-top: 10px;
	font-size: 1.2em;
}

.sectionListButton:hover{
  background-color: #b3d3ea;
}

.sectionList {
	background: #e6dccd;
	padding: 10px;
}

.switchPageContainer {
	display: flex;
    justify-content: space-between;
}

.switchPage {
	border: none;
	background-color: #00478a;
	cursor: pointer;
	padding: 8px .8em;
	text-align: center;
	display: block;
	margin-top: 10px;
}

.switchPage a {
	color: white;
}

.switchPage:hover{
  background-color: #b3d3ea;
}

