#accordian {
  background-color: #eee;
  color: white;
  margin: 25px auto 40px auto;
  width: 100%;
}

/*heading styles*/


#accordian h3 {
  color: #fff;
  margin-bottom: 0px;
  background: #808080;
  background: #05386b;
  cursor: pointer;
  font-size: 15px;
  line-height: 40px;
  padding: 0 10px;
  border-bottom: 1px solid #fff;
}

/*heading hover effect*/


#accordian h3:hover { text-shadow: 0 0 1px rgba(255,255,255,.7); }

/*iconfont styles*/


#accordian h3 span {
  font-size: 16px;
  margin-right: 10px;
}

/*list items*/


#accordian li { list-style-type: none; }

/*links*/


#accordian ul ul li a {
  color: #222;
  display: block;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  line-height: 20px;
  padding: 5px 15px;
  text-decoration: none;
  transition: all 0.15s;
}

#accordian ul ul li a:hover, #accordian ul ul li .current {
      background-color: #94e6f1;
      font-weight: 600;
    /*border-left: 5px solid #f1eeee;*/
}

/*Hiding the non-active list items by default*/


#accordian ul ul { display: none; }

#accordian li.active ul { display: block; }

#accordian h3.current{
  font-weight: 600;
  color:#333;
  background-color: #94e6f1;
}