* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #388e3c;
}

.lead { font-size: 12px; font-weight: 300; }
.container { margin: 0px auto; max-width: 960px; }

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

h2 {
    text-align: center;
    margin: 2px auto;
    color: #fff;
}

.accordion-menu {
    width: 100%;
    max-width: 450px;
    margin: 0px auto 0px;
    background: #fff;
    border-radius: 4px;
    color: #000000;
}

.accordion-menu li.open .dropdownlink {
    color: #000000;
}

.accordion-menu li.open .dropdownlink .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-menu li:last-child .dropdownlink {
    border-bottom: 0;
}

.dropdownlink {
    cursor: pointer;
    display: block;
    padding: 2px 2px 2px 2px;
    font-size: 12px;
    border-bottom: 1px solid #ccc;
    color: #000000;
    position: relative;
    transition: all 0.4s ease-out;
}

.dropdownlink i {
    position: absolute;
    top: 2px;
    left: 16px;
}

.dropdownlink .fa-chevron-down {
    right: 12px;
    left: auto;
}

.submenuItems {
    display: none;
    background: #cbe6c9;
}

.submenuItems li {
    border-bottom: 1px solid #86b686;
}

.submenuItems a {
    display: block;
    color: #a50000;
    padding: 2px 2px 2px 2px;
    transition: all 0.4s ease-out;
}

.submenuItems a:hover {
    background: #cddc39;
    color: #fff;
}

