/* Alphabet blocks displayed as a horizontal menu ----------------------------- */
#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: #470057;
  border: 1px solid #470057;
  border-right: none;
  color: #FFF;
  display: block;
  float: left;
  font-size: 93%;
  padding: 5px;
  text-decoration: none;
}

/* Tighten up the first block a little - not enough room to display on single line without this */
#noArticles .ln-letters a.all {
  padding: 5px 3px;
}

#noArticles .ln-letters a.ln-last:link, #noArticles .ln-letters a.ln-last:visited {
  border-right: 1px solid #470057;
}

#noArticles .ln-letters a:hover, #noArticles .ln-letters a.ln-selected:link, #noArticles .ln-letters a.ln-selected:visited {
  background-color: #470057;
  color: #fff;
}

#noArticles .ln-letters a.ln-disabled:link, #noArticles .ln-letters a.ln-disabled:visited {
  background-color: #fff;
  color: #999;
}

#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;
  width: 350px;
}

#indexedSectionList li {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;

  border: 1px solid #470057;
  color: #470057;
  font-weight: bold;
  list-style-type: none;
  margin: 0 0 0.4em;
  padding: 0;
}

#indexedSectionList li.ln-no-match {
  border: none;
}

#indexedSectionList a {
  display: block;
  padding: 7px;
}

#indexedSectionList a:hover {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;

  background-color: #E1AA05;
  color: #fff;
  text-decoration: none;
}

