.citySelect {
  position: relative;
}

.citySelect > ul {
  border-bottom: 1px solid;
  list-style-type: none;
  position: absolute;
  padding: 0;
  z-index: 10;
  left: 0;
  display: none;
  width: 100%;
}

.citySelect > ul > li
{
  margin-left:0;
  background-color: ghostwhite;
  border: 1px solid;
  border-bottom: none;
  white-space: nowrap;
  text-align: left;
  display: block;
  color: navy;
  text-decoration: none;
  padding-left: 8px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.citySelect > ul > li.selected, .citySelect > ul > li:hover{
  background-color: navy;
  border-color: navy;
  color: yellow;
  z-index: 15;
  font-weight:bold;
  cursor: pointer;
}