.accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 98%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
}
.accordion_right {
padding-left:50%;
}
/*button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}*/
.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
	font-size:16px;
    float: right;
    margin-left: 10px;
	color: #00AEEF;
}
.accordion.active:after {
    content: "\2212";
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
	font-size:14px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.right  {
    float: right;
	padding-right:0px;
}
.left  {
    float: left;
}
.line {
    opacity: 0.5;
}
.line2 {
    opacity: 0;
}