<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Alphabet blocks displayed as a horizontal menu ----------------------------- */
#noArticles {
  margin: 25px 0 2em;
}

#noArticles .listNav {
  position: relative; /* Need this if showing the number count */
}

#noArticles .ln-letters {
  margin-bottom: 2em;
  overflow: hidden;
}

#noArticles .ln-letters a:link, #noArticles .ln-letters a:visited {
  background-color: #ccc;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  color: #333;
  display: block;
  float: left;
  padding: 8px 12px;
  text-decoration: none;
}

#noArticles .ln-letters a:first-child {
  border-left: 1px solid #333;
}

#noArticles .ln-letters a.ln-last:link, #noArticles .ln-letters a.ln-last:visited {
  border-right: 1px solid #333;
}

#noArticles .ln-letters a:hover, #noArticles .ln-letters a.ln-selected:link, #noArticles .ln-letters a.ln-selected:visited {
  background-color: #333;
  color: #fff;
}

#noArticles .ln-letters a.ln-disabled:link, #noArticles .ln-letters a.ln-disabled:visited {
  background-color: #fff;
  color: #666;
}

#noArticles .ln-letter-count {
  color: #0d427c;
  font-size: 85%;
  line-height: 1;
  margin: -14px 0 3px;
  text-align: center;
}

/* Unordered list of links to section names */
#indexedSectionList {
  clear: left;
  list-style-type: none;
  margin: 0 auto 1em;
  padding: 0;
}

#indexedSectionList li {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.5);
  box-shadow: 1px 1px 3px rgba(0,0,0,.5);

  border: 1px solid #333;
  color: #333;
  font-weight: bold;
  list-style-type: none;
  margin: 0 0 .75em;
  padding: 0;
}

#indexedSectionList li.ln-no-match {
  border: none;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

#indexedSectionList a {
  display: block;
  padding: 8px;
}

#indexedSectionList a:hover {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;

  background-color: #333;
  color: #fff;
  text-decoration: none;
}
</pre></body></html>