ul {
  list-style-type: circle;
}
ol {
  list-style-type: upper-roman;
}

a:link {
  color: #eeeeee;
  text-decoration: underline;
}
a:visited {
  color: #eeeeee;
  text-decoration: underline;
}
a:hover {
  color: #eeeeee;
  font-style: italic;
}
a:active {
  color: #eeeeee;
  font-style: italic;
  text-decoration: none;
}

p {
  line-height: 1.4em;
  margin: 10px 10px 10px 10px;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 10px 10px 10px 10px;
}
ul {
  margin: 10px 10px 10px 10px;
}
li {
  margin: 10px 10px 10px 0;
}
mark {
  background-color: #eeeeee;
  color: black;
}

table {
  margin: 10px 10px 10px 10px;
  border-collapse: collapse;
  width: 95%;
}
td, th {
  border: 1px solid #8b8b8b;
  text-align: left;
  padding: 10px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: black;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #900008;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #5c0005;
}