
/*Responsive CSS*/


* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Shadows Into Light', cursive;
  color: #666;
  font-size: 25px;
  background: #f9f9f9;
  line-height: 1.6em;
}

ul, li { list-style: none; }

#faqcontainer {
  width: 90%;
  margin: 20px auto;
  overflow: auto;
  background: #ffe6ee;
}



.title {
  height: 80px;
  background: #b4a7d6;
  color: white;
  font-weight: bold;
  text-align: center;
  padding-top: 6px;
}

.faq li { padding: 20px; }

.faq li.q {
  background: #4FC2E;
  font-weight: bold;
  font-size: 95%;
  border-bottom: 1px #ddd solid;
  cursor: pointer;
}

.faq li.a {
  background: #3BB0D6;
  display: none;
  color:#fff;
}

.rotate {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width:800px) {

#faqcontainer { width: 90%; }
}
