body {
    margin: 0;
    padding: 0;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.accordion-content {
    display: none;
}
.accordion-content a {
    color: #ffffff;
}
.accordion-title {
    background: url(../images/plus.png) right no-repeat #000 !important;
    border-bottom: 1px solid #222526;
    list-style: outside none none;
    display: block;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.accordion-title:hover {
    color: #e6b705;
}
.accordion-title.active {
    background: url(../images/minus.png) right no-repeat #000 !important;
}
.accordion-content {
    background: #000 !important;
    border-bottom: 1px solid #222526;
    list-style: outside none none;
    display: none;
    background-image: url("images/plus.png");
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    padding: 10px 15px;
}
.accordion-title > span {
    float: right;
    position: relative;
    display: none !important;
}
.accordion-title.active > span {
    float: right;
    position: relative;
    background: #fff;
}