/* The navbar container */
#topnav {
  overflow: hidden;
  border:1px solid #ccc;
  border-width:1px 0;
  list-style:none;
  margin:0;
  padding:0;
  text-align: center;
  background-color: white;
}

/* Navbar links */
#topnav a {
  float: top;
  display: inline-block;;
  color: #b1946c;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

#topnav b {
  display: inline-block;
  color: #333;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Links - change color on hover */
#topnav a:hover, a:active {
  background-color: #ddd;
  color: black;
}

/* Navbar Separator */
#topnav a + a:before{
    content: " | ";
    padding: 0 10px;
}

#topnav b + a:before{
    content: " | ";
    padding: 0 10px;
}

#topnav a + b:before{
    content: " | ";
    padding: 0 10px;
    align="center";
}

/* Content (used in combination w/sticky menu)*/
.content {
  padding: 2px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement 
   (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}

/* Header Title */
.header {
  font-family: Times;
  padding: 30px
  text-align: center;
  background: white
}

/* Footer */
.footer {
  font-family: Calibri;
  font-size: small;
  padding: 20px;
  text-align: center;
  /* background: #ddd; */
  margin-top: 20px;
}

/* All */
body {
  font-family: Times;
  font-size: 12pt

}

/**/
h3 {
  font-family: Times;
  font-size: 14pt;
  font-weight: bold;
  color:#365F91;
  margin-bottom: 0.25em;
  /*display: inline;*/
}

p.header {
  font-family: Times;
  font-size: 14pt;
  font-weight: bold;
  text-align: center;
}

p.title {
  font-family: Times;
  font-size: 14pt;
  font-weight: bold;
  color:#365F91;
}

p.subtitle {
  font-family: Times;
  font-size: 14pt;
  font-weight: bold;
}


p.important {
  font-family: Times;
  font-weight: bold;
}

p.highlight {
  font-family: Times;
  font-weight: bold;
  color: red; 
}

/* Links */
a.link {
  color: #b1946c;
}

a.dot {
  font-size: 2em;
  color: #b1946c;
  vertical-align: sub;
}

/* Last Update for pages */
.lastupdate {
  text-align: right;
}

/* Accordion (used for weekly readings) */
.accordion {
  background-color: #fff;
  color: #b1946c;
  /*color: #444;*/
  cursor: pointer;
  padding: 0px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-weight: bold;
  font-family: Times;
  font-size: 16px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #eee; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

/*ol {
  list-style-type: parenthesized-lower-latin;
}*/
/*ol {
  counter-reset: list;
}

ol > li {
  list-style: none;
}

ol > li:before {
  content: counter(list, lower-alpha) ") ";
  counter-increment: list;
}
*/