

table {
  border-collapse: collapse;
}
td {
  border: 10px double black;
  padding: 10px;
}
ol {
  margin-left: 1em;
}
body {
  margin: 1em;
padding-top: 50;
  font-family: “times new roman“, Times, serif;
	font-size: 10pt;
  color: black;
  background: #ffffff;
}
a {
  background: white;
  color: #000000;
  padding-right: 0.25em;
}
hr {
  border-color: white;
}
.advisory {
  background: white;
  color: #000000;
  font-weight: bold;
  padding-right: 0.25em;
}
h1 {
  text-transform: none;
	font size: 6pt;
  font-weight: none;
  color: pink;
  background: white;
}

.advisory {
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 8s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;

  -moz-animation-name: blinker;
  -moz-animation-duration: 8s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;

  animation-name: blinker;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.sourceCode {
 color:#06287e;
}

 /* Style the navbar */
#navbar {
  overflow: hidden;
  background-color: white;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* Navbar links */
#navbar a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

/* Page content */
.content {
  padding-top: 100px;
}

input[type="text"],
textarea {
  background-color: #333;
  color: white;
}

div.alert-warning {
  background-color: darkred;
}
div.alert-success {
  background-color: darkgreen;
}

@-moz-keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

