@charset "utf-8";

/*------accordion-------*/

.accordion{
	width:100%;
	margin:0px 0px 0px 0px;
}

.accordion_title {
	background-color: #EBEBEB;
	margin-bottom: 1px;
	padding: 10px;
	color: #000000;
	cursor: pointer;
	position: relative;
	font-weight: bold;
}
 
.accordion_title:before {
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  background: #FFF;
}
 
.accordion_title:after {
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  margin-top: -13px;
  background: #EBEBEB;
}
 
.accordion_title.active:before {
  margin-top: -2px;
}
 
.accordion_title.active:after {
  margin-top: 3px;
}
 
.accordion_item {
    background-color: #fff;
}


 
