.accordion {
display: table;
float: left;
margin-top: 2px;
text-align: left;
vertical-align: top;
width: 192px;
}
.acc {
list-style: none;
margin-top: 0px;
padding: 0px;
width: 192px;
}
.acc li {
color: white;
list-style: none;
}
.acc input {
display: none;
}

.acc input + label div {
display: none;
}

.acc input:checked + label div {
display: block;
}

.acc label {
background-color: #F3F3F3;
color: blue;
cursor: pointer;
display: block; 
font-weight: bold;
margin: 0px;
padding: 5px 10px;
position: relative;
top: 0;
}

.acc-cont {
background-color: white;
cursor: pointer;
display: block; 
}

.acc div {
padding: 0px 0px 0px 5px;
}

