/*Responsive CSS*/


* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'roboto', sans-serif;
  color: #666;
  font-size: 16px;
  background: #f9f9f9;
  line-height: 1.6em;
}

ul, li { list-style: none; }

#container {
  width: 95%;
  margin: 10px auto;
  overflow: auto;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.title {
	height: 80px;
	/*background: #4366be;*/
	color: #2096ee;
	text-align: left;
	padding-top: 7px;
}

.faq li { padding: 20px; }

.faq li.q {
  background: #4FC2E;
  /*font-weight: bold;*/
  font-size: 115%;
  border-bottom: 2px #ddd solid;
  cursor: pointer;
}

.faq li.a {
  background: #e3e9ec;
  display: none;
  color:#666666;
}

.rotate {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width:800px) {

#container { width: 90%; }
}
