﻿


.accordionx {
  width: 90%;
  border-radius: 5px;
  overflow: hidden;
  margin: auto;
}

.accordionx .itemx .headingx {
  height: 50px;
  line-height: 50px;
  font-size: 17px;
  cursor: pointer;
  color: #fff;
  padding-left: 5px;
  background: #cd1321 url('/images/arrow.png') no-repeat;
  background-position: right 20px top -95px;
  border-bottom: 1px solid #ec8484;
  box-sizing: border-box;
}

.accordionx .itemx.open .headingx,
.accordionx .itemx:last-child .headingx { border: 0; }

.accordionx .itemx.open .headingx { background-position: right 20px top -5px; }

.accordionx .itemx .contentx {
    width: 90%;
   display: none;
  padding: 5px;
  background: #fff;
  font-size: 14px;
  border: 0;

}
.contentx li {

     list-style-type: circle;

}

