﻿/* vertical accordion */
.accordion_toggle {
  display: block;
  height: 30px;
  width: 95%; /*460px;*/
  background: #008080; /*#6788c1;*/
  padding: 0 10px 0 10px;
  line-height: 30px;
  /*color: #ffffff;
  font-weight: normal;
  text-decoration: none;
  outline: none;
  font-size: 12px;
  color: #000000;*/
  border-bottom: 1px solid #ffffff; /*#c3067a;*/
  cursor: pointer;
  margin: 0 0 0 0;
}

.accordion_toggle:hover {
  display: block;
  height: 30px;
  width: 95%;
  background: #009999;
  padding: 0 10px 0 10px;
  line-height: 30px;
  /*color: #ffffff;
  font-weight: normal;
  text-decoration: none;
  outline: none;
  font-size: 12px;
  color: #000000;*/
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
  margin: 0 0 0 0;
}
		
.accordion_toggle_active {
  background: #88c7c7; /*#ccc03c;*/
  color: #ffffff;
  border-bottom: 1px solid #88c7c7; /*1px solid #c3067a;*/
}
		
.accordion_content {
  /*background-color: #ffffff;
  color: #444444;*/
  overflow: hidden;
}
			
.accordion_content h2 {
  margin: 15px 0 5px 10px;
  color: #ccc03c;
}
			
.accordion_content p {
  line-height: 150%;
  padding: 5px 10px 15px 10px;
}