/* Default styling example */

.listNav { 
  margin:0 0 10px;
  position: relative;
}

.ln-letters { 
  overflow:hidden;
}
.ln-letters a { 
  font-size:0.9em;
  display:block;
  float:left;
  padding:2px 6px;
  border:1px solid silver;
  border-right:none;
  text-decoration:none;
}
.ln-letters a.ln-last { 
  border-right:1px solid silver;
}
.ln-letters a:hover,
.ln-letters a.ln-selected { 
  background-color:#eaeaea;
}
.ln-letters a.ln-disabled { 
  color:#ccc;
}
.ln-letter-count {
  position: absolute;
  top: -18px;
  display: none;
  right: 26px;
  width: 20px;
  text-align: center;
  background: #47759e;
  color: white;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  z-index: 10000;
  line-height: 16px;
}
.ln-letter-count:before { 
  content: '';
  position: absolute;
  background: #47759e;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
}

.demo{
  margin-top: 10px;
}
.demo li{
  padding: 6px 4px;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}
.demo li:hover{
  background: #f5f5f5;
}

/* Demo 4 */

#demo4 #listWrapper { 
  width:auto;
}
#demoFour li { 
  width: 12.5%;
  display: inline-block;
  padding: 0;
  float: left;
}
#demoFour a {
  display:block;
  text-align:center;
  border:1px solid silver;
  padding:10px;
  text-decoration:none 
}
#demoFour a:hover { 
  background-color:#eee 
}