.displayNone {
    display: none;
}

.accordion li,.accordion02 li {
    border-bottom: 1px solid #ccc;
    padding: 10px;
}
.accordion a,.accordion02 a {
    display: block;
}

.contentWrap {
	margin: 20px;
	text-align:left;
	font-size:0.95em;
}



.accordion {
	margin: 0 auto;
	width:88%;
}
@media screen and (max-width: 768px){
.accordion {
	width:92%;}
}



.switchs {
    cursor:pointer;
    font-weight: 400;
    padding:10px 40px 10px 10px;
    font-size: 15px;
    background: #fefefe;
    text-align:left;
    border-bottom: 1px solid #ccc;
    position: relative;
    color:#222;
}

.accordion .switchs:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: -100%;
    bottom: -100%;
    margin: auto;
    font-size: 16px;
    height: 16px;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    font-family: sans-serif;
    color: #333;
}

.accordion .switchs.open:after {
    content: "x";
}



.accordion02 .switchs:after {
    position: absolute;
    top: 60%;
    right: 10px;
    margin-top: -18px;
    content: '-';
    font-size: 18px;
    font-weight: bold;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -moz-transition: all, 0.25s, linear;
    -o-transition: all, 0.25s, linear;
    -webkit-transition: all, 0.25s, linear;
    transition: all, 0.25s, linear;
    font-family: sans-serif;
    color: #fff;
}
 
.accordion02 .switchs.open:after {
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-family: sans-serif;
}