@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro|Source+Serif+Pro');

.wrapper {
  max-width: 650px;
  margin: 0 auto;
  font: 16px/1.2em 'Source Sans Pro', sans-serif;
  color: #333;
}

.navigation {
  padding: 5px 30px;
  text-align: center;
}

.navigation.bordered {
  border-top: 1px solid #e4e4e4;
}

.navigation a {
  text-align: center;
  padding: 10px 20px;
  margin: 5px;
  font-size: 14px;
  background-color: #e4e4e4;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 3s;
  transition: background-color 0.3s, color 0.3s;
}

.navigation a.selected {
  background: #07a3dd;
  color: #fff;
}

.candidates .navigation a.selected {
  background: #f6c241;
  color: #333;
}

.navigation a.title {
  background: none;
  color: #7d7d7d;
  font-weight: bold;
  cursor: default;
}

h1 {
  font-size: 24px;
  line-height: 1.2em;
  padding: 0px;
  text-align: center;
}

.description {
  font-size: 14px;
  padding: 10px;
}

.questions {
  margin: 0;
}

.questions .question {
  border-top: 1px solid #e4e4e4;
  padding: 30px 0 0;
}

.questions .question .text {
  font-size: 24px;
  line-height: 1.2em;
  padding: 0 10px;
}

.questions .answers {
  margin: 30px 0;
}

.answers .answer {
  font-size: 18px;
  max-width: 100%;
  margin: 10px 0px;
}

.answers .answer-wrapper {
  margin: 10px;
}


.answer:nth-child(odd) .answer-wrapper {
  background: #f4f4f4;
  border-radius: 4px;
}

.answers.selected {
  cursor: default;
  display: block;
}

.answers .answer-wrapper.hidden {
  display: none;
}

.answer.selected .answer-wrapper.hidden {
  display: block;
}

.answers .namecard {
  margin: 0px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height:45px;
  padding: 45px 45px 15px;
  min-height: 45px;
}

.answers .namecard::after {
  clear: both;
}

.answers .namecard .mugshot {
  float: left;
  margin: 0 10px 10px 0;
}

.answers .namecard .mugshot img {
  width: 45px;
}

.answers .namecard .website {
  font-size: 14px;
}

.answers .namecard .website a {
  color: #07a3dd;
  text-decoration: none;
  font-weight: normal;
}

.answers .answer-body {
  padding: 0 45px 45px;
  font-family: 'Source Serif Pro', serif;
  font-size: 15px;
  line-height: 1.6em;
}


@media screen and (max-width: 480px) {

.questions .question .text {
  font-size: 16px;
}

.answers .namecard {
  font-size: 16px;
  line-height:45px;
  padding: 15px;
}

.answers .answer-body {
  padding: 0 15px 15px;;
}



}
