.accordion-menu {
    width: 100%;
    /*max-width: 450px;*/
    margin: 0px auto 0px;
    background: #fff;
    border-radius: 4px;
}
.accordion-menu li {
  list-style:none;
}
.accordion-menu li.open .dropdownlink {
    color: #000;
}
.accordion-menu li.open .dropdownlink .fa-chevron-down {
    transform: rotate(180deg);
}
.accordion-menu li:last-child .dropdownlink {
    border-bottom: 0;
}
.no-dropdownlink a{
  cursor: pointer;
  display: block;
  padding: 5px 5px 5px 5px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  color:#000;
  text-decoration: none;
}
.no-dropdownlink a:hover{
  cursor: pointer;
  display: block;
  padding: 5px 5px 5px 5px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  color:#000;
  text-decoration: none;
  background: #eee;
}
.dropdownlink {
  cursor: pointer;
  display: block;
  padding: 5px 5px 5px 5px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  color: #212121;
  position: relative;
  transition: all 0.4s ease-out;
}
.dropdownlink:hover {
  cursor: pointer;
  display: block;
  padding: 5px 5px 5px 5px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  color: #212121;
  position: relative;
  transition: all 0.4s ease-out;
  background: #eee;
}
.dropdownlink i {
    position: absolute;
    top: 10px;
    left: 16px;
    color: #555;
}
.dropdownlink .fa-chevron-down {
    right: 12px;
    left: auto;
}
.submenuItems {
    display: none;
    background: #f9f9f9;
}
.submenuItems li {
    border-bottom: 1px solid #eee;
}
.submenuItems a {
    display: block;
    color: #727272;
    padding: 5px 5px 5px 5px;
    transition: all 0.4s ease-out;
    text-decoration: none;
}
.submenuItems a:hover {
    background: #eee;
    color: #000;
}