@charset "utf-8";

dl.accordion_dl{
    width:100%;
	margin-bottom:40px;
	/*margin-right:5%;
	margin-left:5%;*/
}

.accordion_dl dt {
    background-image: -webkit-linear-gradient(90deg,rgba(25,46,118,1.00) 10%,rgba(0,117,190,1.00) 50%,rgba(0,61,153,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(25,46,118,1.00) 10%,rgba(0,117,190,1.00) 50%,rgba(0,61,153,1.00) 100%);
    background-image: -o-linear-gradient(90deg,rgba(25,46,118,1.00) 10%,rgba(0,117,190,1.00) 50%,rgba(0,61,153,1.00) 100%);
    background-image: linear-gradient(90deg,rgba(25,46,118,1.00) 10%,rgba(0,117,190,1.00) 50%,rgba(0,61,153,1.00) 100%);
    border-bottom: solid 1px #0288D1;
    margin-bottom: 1px;
    padding: 10px;
    color: #FFF;
    cursor: pointer;
    position: relative;
    font-weight:400;
}
 
.accordion_dl dt: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_dl dt: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: rgba(0,61,153,1.00) 100%;
}
 
.accordion_dl dt.active:before {
  margin-top: -2px;
}
 
.accordion_dl dt.active:after {
  margin-top: 3px;
}
 
.accordion_dl dd {
    background-color: #fff;
    border-bottom: solid 1px #B3E5FC;
	border-right: solid 1px #B3E5FC;
	border-left: solid 1px #B3E5FC;
    padding: 8px 24px 8px 24px;
}
 