#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}

#quiz {
  z-index: 1;
  width: 100%;
  background-color: #999;
  margin-top: 3em;
  z-index: 0;
  padding-top: 1px;
  padding-bottom: 1px;
}

.audioWrapper {
  width: 100%;
  margin: 0px;
  overflow: hidden;
  height: 54px;
  padding-top: 5px;
}

#legend {
  background: #bbb;
  height: 40px;
  z-index: 5;
  width: 100%;
  font-size: 14px;
}

.dropdown {
  float: left;
  background: #000;
  height: 100%;
  width: 100%;
}

.dropdown a {
  text-decoration: none;
}

.dropdown a:hover {
  text-decoration: underline;
}

.dropdown-toggle {
  color: #fff;
  background-color: #000;
  width: 100%;
  display: block;
  padding: 10px 0 12px 0;
}

.dropdown-toggle span {
  padding: 0 0 0 20px;
}

.caret {
  float: right;
  position: relative;
  top: 0;
  right: 15px;
  color: #fff;
  border-top: 4px solid #fff;
}

.dropdown-menu {
  width: 100%;
  background-color: #333;
  padding: 0;
  border: 0px;
  border-radius: 0px;
  margin-top: 0;
}

.dropdown-menu li > a {
  color: #fff;
  padding: 10px 0 12px 20px;
  text-decoration: none;
}

.dropdown-menu li > a:hover {
  background-color: #000;
  background-image: none;
  text-decoration: underline;
}

@media handheld, only screen and (max-width: 400px) {
  #legend {
    display: none;
  }
}

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

.quizQuestion {
  padding: 20px;
  background: #444;
}

.questionCount {
  color: #ff6633;
  margin: 0 0 10px 0;
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.questionText {
  display: block;
  font-family: Georgia, Times, serif;
  font-size: 21px;
  line-height: 29px;
  color: #fff;
}

.quizItem:last-child {
  margin-bottom: 20px;
}

.quizItem:first-child {
  margin-top: 10px;
}

.answer {
  background: #2cbff0 url("../img/icon_unpicked.png") 15px 15px no-repeat;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}

.answer:hover {
  background: #33ccff url("../img/icon_picked.png") 15px 15px no-repeat;
  cursor: pointer;
}

.answer span {
  padding: 15px 15px 15px 55px;
  display: block;
}

.answer a {
  color: #fff;
}

.answer a:hover {
  color: #000;
}

.incorrect,
.incorrect:hover {
  background: #ccc url("../img/icon_incorrect.png") 15px 15px no-repeat;
  cursor: default;
}

.correct,
.correct:hover {
  background: #436d18 url("../img/icon_correct.png") 15px 15px no-repeat;
  cursor: default;
}

.answerMore {
  background: #527d26;
  display: none;
  padding: 15px;
}

.answerMore p {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 15px 0;
}

.answerMore iframe {
  border: 0;
  padding: 0;
  margin: 0;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  .answer,
  .answer:hover,
  .incorrect,
  .incorrect:hover,
  .correct,
  .correct:hover {
    background-size: 25px 25px;
    background-position: 15px 15px;
  }

  .answer {
    background-image: url("../img/icon_unpicked@2x.png");
  }

  .answer:hover {
    background-image: url("../img/icon_picked@2x.png");
  }

  .incorrect,
  .incorrect:hover {
    background-image: url("../img/icon_incorrect@2x.png");
  }

  .correct,
  .correct:hover {
    background-image: url("../img/icon_correct@2x.png");
  }
}

#flyouts {
  color: #fff;
  background: #333;
}
