:root {
  --primary-blue: rgb(44, 69, 105);
}

body {
  background: #fff;
  font-family: Georgia, Palatino, Times, "Times New Roman", sans-serif;
  line-height: 1.4;
  margin: 0;
}

a {
  text-decoration: none;
}

a:link,
a:visited {
  color: var(--primary-blue);
}

a:hover {
  color: #700;
}

#main {
  position: absolute;
  top: 40px;
  left: 280px;
  width: calc(100% - 320px);
  padding-bottom: 50px;
}

#main h1 {
  font-weight: normal;
  color: var(--primary-blue);
}

#main h2,
#main h3 {
  margin-top: 1.5em;
}

#main p {
  font-size: 15px;
  line-height: 20px;
}

#main ul,
#main ol {
  margin: 20px;
}

#main li {
  font-size: 15px;

  line-height: 20px;
}

#main ul li {
  list-style-type: square;
}

#sidebar {
  position: fixed;

  top: 40px;
  left: 20px;
  width: 200px;

  padding: 20px 20px 0 0;

  border-right: 1px solid #ccc;

  text-align: right;
}

#sidebar h2 {
  text-transform: uppercase;

  font-size: 13px;

  color: #333;

  letter-spacing: 1px;

  line-height: 20px;
}

#sidebar ul {
  list-style-type: none;

  margin: 20px 0;
}

#sidebar li {
  font-size: 14px;

  line-height: 20px;
}

pre,
dl {
  background: #f5f5f5;
  padding: 10px;
  border: 1px solid #ccc;
  overflow-x: auto;
  border-radius: 3px;
  font-family: monaco, monospace;
  font-size: 13px;
  line-height: 1.2;
  margin: 0;
}

pre.headers,
dl {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eee), to(#ccc));
  border-bottom-color: #aaa;
  color: #444;
  text-shadow: 0 1px 0 #fff;
}
pre.highlight {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top-width: 0;
}

dd {
  margin-left: 1.4em;
}

table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
thead tr {
  background-color: var(--primary-blue);
  color: #ffffff;
  text-align: left;
}
th,
td {
  padding: 12px 15px;
}

tbody tr {
  border-bottom: 1px solid #dddddd;
}

tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

tbody tr:last-of-type {
  border-bottom: 2px solid var(--primary-blue);
}
