#langSelector ul {
  position: relative;
  border: 1px solid black;
  background-color: rgb(224, 224, 224);
  margin: 0;
  padding: 0;
}

#langSelector li {
    position: relative;
    margin: 0;
    padding: 0;

    list-style-type: none;
    text-indent: 1.5em;
    width: 100%;
    
    font-size: 3em;
    line-height: 1.5em;

    border-bottom: 0.1em solid black;
}

#langSelector li:last-child {
    border-bottom: none;
}

#langSelector li:hover {
  cursor: pointer;
  background-color: bisque;
  font-weight: bold;
}

#langSelector li:before {
    content: "";
    position: absolute;
    top: 0.25em;
    bottom: 0.25em;
    left: 0.25em;
    width: 1em;
    background-color: transparent;
    background-image: url(/lang/css-sprite-langs.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
}
#langSelector li.en:before {
    background-position: -1em 0;
}