/* Base Styles */
#verticalmenu,
#verticalmenu ul,
#verticalmenu li,
#verticalmenu a {
  margin: 0 5px;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-family: 'Open Sans', Century Gothic;
  font-size: 13px;
  position: relative;
}
#verticalmenu a {
  line-height: 1.3;
  padding: 6px 15px;
}
#verticalmenu {
  width: 95%;
}
#verticalmenu > ul > li {
  cursor: pointer;
  background: transparent/*#000*/;
  border-bottom: 1px solid #797a80;
}
#verticalmenu > ul > li:last-child {
  border-bottom: 1px solid #3e3d3c;
}
#verticalmenu > ul > li > a {
  font-size: 13px;
  display: block;
  color: #797979;
  /*text-shadow: 0 1px 1px #000;*/
  background: transparent;/*#6a6b72;
  background: -moz-linear-gradient(#6a6b72 0%, #4c4e53 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6a6b72), color-stop(100%, #4c4e53));
  background: -webkit-linear-gradient(#6a6b72 0%, #4c4e53 100%);
  background: linear-gradient(#6a6b72 0%, #4c4e53 100%);*/
}
#verticalmenu > ul > li > a:hover {
  text-decoration: none;
}
#verticalmenu > ul > li.active {
  border-bottom: none;
}
#verticalmenu > ul > li.active > a {
  background: transparent;/*#a5ce27;
  background: -moz-linear-gradient(#a5ce27 0%, #709400 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a5ce27), color-stop(100%, #709400));
  background: -webkit-linear-gradient(#a5ce27 0%, #709400 100%);
  background: linear-gradient(#a5ce27 0%, #709400 100%);*/
  color: #000000;
  font-weight:bold;
  /*text-shadow: 0 3px 3px #00ABC9;*/
}
#verticalmenu > ul > li.has-sub > a:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  border: 5px solid transparent;
  border-left: 5px solid #c9c9c9;
}
#verticalmenu > ul > li.has-sub.active > a:after {
  right: 13px;
  top: 12px;
  color: #FFFFFF;
  border: 5px solid /*transparent*/;
  border-top: 5px solid #000000;
}
/* Sub menu */
#verticalmenu ul ul {
  padding: 0;
  /*display: none;*/
}
#verticalmenu ul ul a {
  margin: 0 15px;
  background: transparent/*#efefef*/;
  display: block;
  color: #808080;
  font-size: 13px;
}
#verticalmenu ul ul li {
  border-bottom: 1px solid #c9c9c9;
}

#verticalmenu ul ul li.active a {
  background: transparent;
  color: #000000;
  font-weight:bold;
}

#verticalmenu ul ul li.odd a {
  background: transparent/*#e5e5e5*/;
}
#verticalmenu ul ul li:last-child {
  border: none;
}
