* {
	  box-sizing: border-box;
}

body {
	  font: 16px Arial;  
}
/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}


.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #FEFEFE; 
  color: black;
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #952F38;
  color:white;  
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: #E09EA4 !important; 
  color: #F0F0F0; 
}

/* for alphabetical list */
.alphalist li {
  margin: 1.0em 0em 1.0em 0em;
  list-style: none;
}

/* padding for anchor tags */
.aPad {
	padding-top: 1.7em;
}

.letterLink {
	padding: .0em .2em 0em .2em;
	font-size:1.5rem;
}

.letterLink a {
	padding: .0em .2em 0em .2em;
	font-size:1.5rem;
}

