@charset "utf-8";
/* CSS Document */


.cat h1 {
  color:#fff;
  background:#424242;
  padding:10px;
  margin:0;
}




.cat ul {
  margin:0;
  padding:0;
}


.term {
  list-style:none;
  position:relative;
}
.term h3 {
  color:#FFF;
  background:#18A;
  padding:10px;
  margin:0;
  cursor:pointer;
  border-bottom:1px solid #FFF;
}

/*
.cat ul:nth-child(even) h3 {
  background:#929292;
  color:#FFF;
}
*/

.term h3:hover {
  background:#07B;
}

.term h3:after {
  position:absolute;
  right:10px;
  top:-4px;
  font-size:25px;
  line-height:58px;
  font-family:FontAwesome;
  content:'\f063';
  color:#FFF;
}
.term h3.active:after{
  position:absolute;
  right:10px;
  top:-5px;
  font-size:25px;
  line-height:58px;
  font-family:FontAwesome;
  content:'\f062';
  color:#FFF;
}

.term h3.active {
  background:#06A;
	border-bottom:none;
}

.content {
	padding:20px;
	
	border-top:none;
	box-shadow:inset 0px 0px 4px 1px rgba(0,0,0,0.5);
	
}

.content.hidden {
  max-height:0;
}

.highlighted {
	background:yellow;
	color:#000;
}

